OFFSET
1,1
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..611 (* All such primes with 9 or fewer digits *)
MATHEMATICA
ppmd9Q[n_]:=Module[{idn=IntegerDigits[n]}, idn==Reverse[idn]&&idn[[(Length[ idn]+1)/2]]==9]; Flatten[Table[Select[Prime[Range[PrimePi[10^(2n)+1], PrimePi[ 10^(2n+1)-1]]], ppmd9Q], {n, 3}]] (* Harvey P. Dale, Feb 11 2015 *)
PROG
(Magma) [ p: p in PrimesUpTo(200000000) | IsOdd(d) and D[(d+1) div 2] eq 9 and D eq Reverse(D) where d is #D where D is Intseq(p) ]; // Vincenzo Librandi, Apr 12 2011
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Lekraj Beedassy, Apr 25 2003
EXTENSIONS
a(4), a(14), a(18), a(24), a(27) from Vincenzo Librandi, Apr 12 2011
STATUS
approved