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.
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
KEYWORD
nonn,base,hard
AUTHOR
James G. Merickel, Dec 11 2012
STATUS
approved