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!)
A110783 Number of digits in A110782(n). 12
2, 1, 3, 3, 2, 8, 21, 102, 25, 726, 954 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(12) > 7300. - 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 "1379":
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 24 2022
CROSSREFS
Sequence in context: A128182 A059739 A035566 * A333224 A124770 A334300
KEYWORD
base,nonn,more
AUTHOR
Amarnath Murthy, Aug 12 2005
EXTENSIONS
More terms from Joshua Zucker, Jan 11 2006
a(11) from Sean A. Irvine, Mar 22 2010
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 07:10 EDT 2024. Contains 372388 sequences. (Running on oeis4.)