OFFSET
1,1
COMMENTS
Idea from Carlos Rivera's The Prime Puzzles and Problems Connection, Conjecture 23.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..683 (* all such primes up to the 20 millionth prime *)
FORMULA
Add prime to its reverse. If a square, add to sequence.
EXAMPLE
a(4)=263 because 263+362=625 and 625 is a square whose root is 25.
MATHEMATICA
Select[Prime[Range[33000]], IntegerQ[Sqrt[FromDigits[Reverse[ IntegerDigits[#]]]+ #]]&] (* Harvey P. Dale, Aug 18 2012 *)
CROSSREFS
KEYWORD
easy,nonn,base
AUTHOR
Enoch Haga, Feb 23 2001
STATUS
approved