login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A110775 Number of digits in A110774(n). 15
2, 1, 2, 2, 7, 10, 101, 196, 9, 550, 6150, 4532, 3249 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
PROG
(Python)
from sympy import isprime
from itertools import count, islice
def agen(): # generator of terms
s = ""
while True:
for d in "13":
for k in count(1):
if isprime(int(s+d*k)): break
yield k
s += d*k
print(list(islice(agen(), 10))) # Michael S. Branicky, Aug 23 2022
CROSSREFS
Sequence in context: A145859 A145863 A240492 * A229232 A092186 A138262
KEYWORD
base,nonn,more
AUTHOR
Amarnath Murthy, Aug 12 2005
EXTENSIONS
Corrected and extended by Joshua Zucker, Jan 11 2006
a(11) from Michael S. Branicky, Aug 23 2022
a(12)-a(13) from Michael S. Branicky, May 29 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 7 09:38 EDT 2024. Contains 372302 sequences. (Running on oeis4.)