OFFSET
1,1
LINKS
John Cerkan, Table of n, a(n) for n = 1..10000
EXAMPLE
3206 is in the sequence because 3206^2 = 10278436 and 10278436 contains exactly eight different digits: 0, 1, 2, 3, 4, 6, 7 and 8.
MAPLE
f := []; for i from 0 to 200 do if nops({op(convert(i^2, base, 10))})=8 then f := [op(f), i] fi; od; f;
MATHEMATICA
Select[Range[7000], Count[DigitCount[#^2], 0]==2&] (* Harvey P. Dale, Aug 10 2017 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Asher Auel, Feb 28 2000
STATUS
approved