A101117 a(n) = the first prime yielding the record value A101116(n).
2, 3, 7, 73, 13799, 600307, 77197951, 4866134641, 36052921903
Offset: 1
Examples
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.
Programs
-
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
Extensions
a(7)-a(8) from Michael S. Branicky, Jun 24 2022
a(9) from Michael S. Branicky, Jul 26 2024
Comments