login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A101117
a(n) = the first prime yielding the record value A101116(n).
3
2, 3, 7, 73, 13799, 600307, 77197951, 4866134641, 36052921903
OFFSET
1,1
EXAMPLE
a(6) = 600307 because 600307 is the first prime to which A101116(6) digits (18) can be prepended yielding a new prime each time (giving preference to the smallest digit which meets the requirement) - 600307, 3600307, 93600307, ..., 9912733515196363393600307.
PROG
(Python)
g = agen() # uses agen() and imports from A101116
print([next(g)[1] for n in range(1, 7)]) # Michael S. Branicky, Jun 24 2022
CROSSREFS
KEYWORD
base,more,nonn
AUTHOR
Chuck Seggelin (seqfan(AT)plastereddragon.com), Dec 02 2004
EXTENSIONS
a(7)-a(8) from Michael S. Branicky, Jun 24 2022
a(9) from Michael S. Branicky, Jul 26 2024
STATUS
approved