OFFSET
1,2
COMMENTS
Numbers with trailing zeros are excluded.
LINKS
Eric Weisstein's World of Mathematics, Square Number
FORMULA
a(n) = sqrt(A033294(n)). - Michel Marcus, Sep 22 2015
EXAMPLE
99^2 = 9801 -> 1089 = 33^2.
MATHEMATICA
Select[Range[10000], IntegerQ[Sqrt[FromDigits[Reverse[IntegerDigits[ #^2]]]]] &] (* and then delete terms ending with 0 - N. J. A. Sloane, Jul 08 2011 *)
Sqrt[Select[Range[2000]^2, Mod[#, 10]!=0&&IntegerQ[Sqrt[FromDigits[Reverse[IntegerDigits[#]]]]]&]] (* Vincenzo Librandi, Sep 22 2015 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, Nov 15 1998
STATUS
approved