OFFSET
1,1
COMMENTS
All terms must have an odd number of digits. - Harvey P. Dale, Jun 13 2015
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..100
EXAMPLE
1895981 is in the sequence because digital root rho(1895981)=rho(1+8+9+5+9+8+1)=rho(41)=4+1=5, which is the middle digit of 1895981.
MATHEMATICA
ppdrQ[n_]:=Module[{idn=IntegerDigits[n]}, OddQ[Length[idn]]&&idn== Reverse[ idn] && NestWhile[Total[IntegerDigits[#]]&, n, #>9&] == idn[[(Length[ idn]+1)/2]]]; Select[Prime[Range[5, 150000]], ppdrQ] (* Harvey P. Dale, Jun 13 2015 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Lekraj Beedassy, Apr 30 2003
STATUS
approved