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!)
A110777 Number of digits in A110776(n). 15
2, 3, 2, 6, 9, 25, 9, 3, 762, 354, 248, 2181, 606, 1941, 6423 (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 "17":
for k in count(1):
if isprime(int(s+d*k)): break
yield k
s += d*k
print(list(islice(agen(), 11))) # Michael S. Branicky, Aug 23 2022
CROSSREFS
Sequence in context: A158279 A153984 A025502 * A087454 A059446 A298854
KEYWORD
base,nonn,more
AUTHOR
Amarnath Murthy, Aug 12 2005
EXTENSIONS
a(7)-a(9) from Joshua Zucker, Jan 11 2006
a(10) and a(11) from Sean A. Irvine, Mar 22 2010
a(12)-a(14) from Michael S. Branicky, Aug 23 2022
a(15) 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 12 00:47 EDT 2024. Contains 372431 sequences. (Running on oeis4.)