OFFSET
0,3
EXAMPLE
3486 is in the sequence because (1) it is a triangular number and (2) the product of its digits 3*4*8*6=576 is a square.
MATHEMATICA
Select[Accumulate[Range[0, 150]], IntegerQ[Sqrt[Times@@IntegerDigits[#]]]&] (* Harvey P. Dale, Jul 21 2016 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Luc Stevens (lms022(AT)yahoo.com), Apr 26 2006
STATUS
approved