OFFSET
1,3
COMMENTS
The squares in this sequence are divisible by 9.
LINKS
Indranil Ghosh, Table of n, a(n) for n = 1..11130 (terms 1..1000 from Harry J. Smith)
EXAMPLE
155 is a member as 155 - 1 - 5 - 5 = 144 = 12^2.
MATHEMATICA
Select[Range[0, 350], IntegerQ[Sqrt[#-Total[IntegerDigits[#]]]]&] (* Harvey P. Dale, Feb 24 2011 *)
PROG
(PARI) isok(k)={issquare(k-sumdigits(k))}
CROSSREFS
KEYWORD
base,nonn,changed
AUTHOR
Amarnath Murthy, Dec 18 2001
EXTENSIONS
More terms from Jason Earls, Dec 20 2001
Offset changed from 0 to 1 by Harry J. Smith, Mar 05 2010
STATUS
approved