OFFSET
1,1
COMMENTS
Those with trailing zeros are excluded.
LINKS
Jon E. Schoenfield, Table of n, a(n) for n = 1..8448 (first 798 terms from Seiichi Manyama; all terms < 10^10)
Patrick De Geest, Palindromic Squares
Eric Weisstein's World of Mathematics, Square Number
EXAMPLE
1212^2 = 1468944 -> 4498641 = 2121^2.
MATHEMATICA
r[n_] := FromDigits[Reverse[IntegerDigits[n]]]; Select[Range[2200], Mod[#, 10] != 0 && IntegerQ[Sqrt[r[#^2]]] && r[#^2] != #^2 &] (* Jean-François Alcover, Mar 08 2011 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, Nov 15 1998
STATUS
approved