OFFSET
1,2
FORMULA
a(n)=A202170(n)^2
MATHEMATICA
Select[Range[0, 400000]^2, Complement[Union[IntegerDigits[#]], {0, 4, 8}] == {} &] (* T. D. Noe, Dec 21 2011 *)
Select[FromDigits/@Tuples[{0, 4, 8}, 11], IntegerQ[Sqrt[#]]&] (* Harvey P. Dale, Apr 19 2019 *)
PROG
(PARI) for(i=0, 99999, setminus(Set(Vec(Str(i^2))), Vec("048")) | print1(i^2, ", "))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
M. F. Hasler, Dec 13 2011
STATUS
approved