OFFSET
1,2
COMMENTS
Any one of these terms can have an even number of 0's following the term. Thus, the numbers ending in 0 have been omitted.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
MATHEMATICA
Select[Range[1500]^2, Mod[#, 10]!=0&&IntegerQ[Sqrt[Total[ IntegerDigits[ #]^2]]]&] (* Harvey P. Dale, Apr 29 2019 *)
PROG
(PARI) for(n=0, 10^3, if(n%10, N=n^2; d=digits(N); s=0; for(i=1, #d, s+=d[i]^2); if(issquare(s), print1(N, ", "))))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Derek Orr, Feb 11 2015
STATUS
approved