OFFSET
1,1
LINKS
David A. Corneth, Table of n, a(n) for n = 1..32860
MATHEMATICA
Select[Prime[Range[250000]], OddQ[IntegerLength[#]]&& PalindromeQ[#] && IntegerDigits[ #][[(IntegerLength[#]+1)/2]]==1&](* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Dec 31 2018 *)
PROG
(Magma) [ p: p in PrimesUpTo(200000000) | IsOdd(d) and D[(d+1) div 2] eq 1 and D eq Reverse(D) where d is #D where D is Intseq(p) ]; // Vincenzo Librandi, Apr 12 2011
(PARI) first(n) = {my(res = List(), t = 0); forstep(i = 1, oo, 10, c = A002113(i); if(#digits(c) % 2 == 1 && isprime(c), print1(c", "); t++; listput(res, c); if(t == n, return(res))))} \\ David A. Corneth, Dec 31 2018
CROSSREFS
KEYWORD
nonn,easy,less,base
AUTHOR
Lekraj Beedassy, Apr 25 2003
EXTENSIONS
a(22) from Vincenzo Librandi, Apr 12 2011
STATUS
approved