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!)
A110789 Number of digits in A110788(n). 10
1, 1, 2, 4, 5, 10, 23, 102, 102, 138, 451, 1922, 1624, 5630 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
PROG
(Python)
from sympy import isprime
from itertools import count, islice
def agen(): # generator of terms
s = ""
while True:
for d in "71":
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: A018688 A018733 A239819 * A125952 A337661 A248127
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Aug 13 2005
EXTENSIONS
More terms from Joshua Zucker, Jan 11 2006
a(12) from Sean A. Irvine, Mar 22 2010
a(13)-a(14) from Michael S. Branicky, Aug 23 2022
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 April 25 04:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)