OFFSET
1,2
COMMENTS
No other terms < 20000000000. - Patrick De Geest, Aug 15 1999
LINKS
Patrick De Geest, Palindromic Sums of Squares of Consecutive Integers
Carlos Rivera, Puzzle 14. Pal-Primes and sum of powers, The Prime Puzzles & Problems Connection.
Eric Weisstein's World of Mathematics, Palindromic Prime
MATHEMATICA
Flatten[Position[Total/@Partition[Range[1300]^2, 2, 1], _?(PrimeQ[#] && IntegerDigits[#]==Reverse[IntegerDigits[#]]&)]] (* Harvey P. Dale, Dec 09 2014 *)
PROG
(PARI) isok(m) = my(p=m^2+(m+1)^2); if (isprime(p), my(d=digits(p)); (d == Vecrev(d))); \\ Michel Marcus, Jan 05 2019
CROSSREFS
KEYWORD
nonn,nice,hard,base
AUTHOR
STATUS
approved