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”).

A220346
Beginning with a(1)=2, a(n+1) is the a(n)-th palindromic prime.
1
2, 3, 5, 11, 313, 3075703, 946287424782649
OFFSET
1,1
COMMENTS
Assuming that no phenomenally strong sieve or counting algorithm for palindromic primes is discovered, a(8) (which is in the vicinity of 10^35) will be beyond reach for at least several years even with the best computing environment.
FORMULA
A220346(n+1) = A002385(A220346(n)).
MATHEMATICA
palQ[n_] := Module[{d = IntegerDigits[n]}, d == Reverse[d]]; t = {2}; p = 0; cnt = 0; Table[While[cnt < t[[-1]], While[p = NextPrime[p]; ! palQ[p]]; cnt++]; AppendTo[t, p], {5}]; t (* T. D. Noe, Dec 11 2012 *)
CROSSREFS
Cf. A002385.
Sequence in context: A075883 A195815 A327428 * A242995 A127814 A162253
KEYWORD
nonn,base,hard
AUTHOR
James G. Merickel, Dec 11 2012
STATUS
approved