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!)
A110781 Number of digits in A110780(n). 14
2, 5, 9, 10, 38, 47, 1279, 11389 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(8) > 8000. - Michael S. Branicky, Aug 24 2022
LINKS
PROG
(Python)
from sympy import isprime
from itertools import count, islice
def agen(): # generator of terms
s = ""
while True:
for d in "19":
for k in count(1):
if isprime(int(s+d*k)): break
yield k
s += d*k
print(list(islice(agen(), 7))) # Michael S. Branicky, Aug 24 2022
CROSSREFS
Sequence in context: A348167 A159073 A088343 * A170838 A115248 A005123
KEYWORD
base,nonn,more
AUTHOR
Amarnath Murthy, Aug 12 2005
EXTENSIONS
More terms from Joshua Zucker, Jan 11 2006
a(7) from Sean A. Irvine, Mar 22 2010
a(8) from Michael S. Branicky, Jun 24 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 11 02:40 EDT 2024. Contains 372388 sequences. (Running on oeis4.)