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

A229879
Palindromic prime numbers == 5 (mod 9).
1
5, 131, 383, 797, 10301, 12821, 16061, 19391, 30803, 32423, 35753, 36563, 38183, 76667, 77477, 79997, 94649, 96269, 1003001, 1028201, 1085801, 1093901, 1126211, 1134311, 1150511, 1175711, 1183811, 1208021, 1257521, 1273721, 1281821, 1363631, 1371731, 1412141
OFFSET
1,1
LINKS
MATHEMATICA
t = {}; Do[z = n*10^(IntegerLength[n] - 1) + FromDigits@Rest@Reverse@IntegerDigits[n]; If[PrimeQ[z] && Mod[z, 9] == 5, AppendTo[t, z]], {n, 1, 99999}]; t
CROSSREFS
Sequence in context: A203476 A203702 A142892 * A145611 A222880 A070247
KEYWORD
nonn,base,less
AUTHOR
Shyam Sunder Gupta, Oct 02 2013
STATUS
approved