OFFSET
0,3
EXAMPLE
2146689 is in the sequence because it is a cube and (1)the sum of its digits 2+1+4+6+6+8+9=36 is a square and (2)the product of its digits 2*1*4*6*6*8*9=20736 is also a square.
MATHEMATICA
okQ[n_]:=Module[{idn=IntegerDigits[n]}, IntegerQ[Sqrt[Total[idn]]] && IntegerQ[Sqrt[Times@@idn]]]; Select[Range[0, 450]^3, okQ] (* Harvey P. Dale, Aug 24 2011 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Luc Stevens (lms022(AT)yahoo.com), Apr 12 2006
EXTENSIONS
Corrected (by inserting a(15)=26198073) by Harvey P. Dale, Aug 24 2011
STATUS
approved