OFFSET
1,1
LINKS
Harry J. Smith, Table of n, a(n) for n = 1..1000
EXAMPLE
63 belongs to this sequence as 63 + 6*3 = 81 = 9^2.
MATHEMATICA
f[n_] := n + Apply[ Times, IntegerDigits[n]]; Select[ Range[ 2500], IntegerQ[ Sqrt[ f[ # ]]] & ]
Select[Range[3000], IntegerQ[Sqrt[#+Times@@IntegerDigits[#]]]&] (* Harvey P. Dale, Sep 15 2024 *)
PROG
(PARI) isok(k) = issquare(k+vecprod(digits(k))); \\ Harry J. Smith, Mar 05 2010
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Dec 18 2001
EXTENSIONS
More terms from Robert G. Wilson v, Dec 22 2001
Offset changed from 0 to 1 by Harry J. Smith, Mar 05 2010
STATUS
approved