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

A177948
Numbers n such that n^2 + reverse of n^2 is a prime.
1
1, 10, 14, 25, 104, 116, 124, 136, 145, 149, 151, 157, 161, 167, 173, 184, 188, 190, 205, 224, 245, 251, 266, 268, 272, 280, 287, 289, 310, 1006, 1024, 1036, 1060, 1070, 1124, 1150, 1216, 1220, 1240, 1244, 1250, 1286, 1306, 1310, 1336, 1366, 1376, 1406, 1417
OFFSET
1,2
EXAMPLE
116 is in the sequence, because 116^2 = 13456, and 13456 + 65431 = 78887 is a prime.
MATHEMATICA
Select[Range[2000], PrimeQ[(#)^2 + FromDigits[Reverse[IntegerDigits[(#)^2]]]] &]
CROSSREFS
Sequence in context: A071620 A175664 A053690 * A176140 A031028 A176810
KEYWORD
nonn,base
AUTHOR
Michel Lagneau, May 15 2010
STATUS
approved