OFFSET
1,2
COMMENTS
The squares of 969, 9669, 96669, 966669, ... with n 6s belong to this sequence if n = 4*m^2 - 3. The sum of the digits of this number is 36*m^2 and the product of the digits is 108^2 * 20^k, where k = 4xm^2.
REFERENCES
Amarnath Murthy, Infinitely many common members of Smarandache Additive as well as Multiplicative Square sequence, (to be published in the Smarandache Notions Journal)
Felice Russo, A set of new Smarandache functions, sequences and conjectures in number theory, American Research Press 2000
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
EXAMPLE
14884 = 122^2 is a member of this sequence as 1+4+8+8+4 = 25 = 5^2 and 1*4*8*8*4 = 1024 = 32^2.
MATHEMATICA
d[n_]:=IntegerDigits[n]; iQ[n_]:=IntegerQ[Sqrt[n]]; Select[Range[2500]^2, iQ[Plus@@(x=d[#])] && iQ[Times@@x] && FreeQ[x, 0] &] (* Jayanta Basu, May 19 2013 *)
PROG
(PARI) is(n)=my(v=digits(n), pr=prod(i=1, #v, v[i])); pr && issquare(pr) && issquare(n) && issquare(sumdigits(n)) \\ Charles R Greathouse IV, May 19 2013
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Amarnath Murthy, Apr 24 2001
EXTENSIONS
More terms from Larry Reeves (larryr(AT)acm.org), May 11 2001
STATUS
approved