OFFSET
1,1
COMMENTS
The first term having a repeated digit is 1028196.
LINKS
Colin Barker, Table of n, a(n) for n = 1..1000
FORMULA
a(n) = A054034(n)^2.
EXAMPLE
124609 is in the sequence because 124609 = 353^2 and 124609 contains exactly six different digits: 0, 1, 2, 4, 6 and 9.
PROG
(PARI) s=[]; for(n=1, 1200, if(#vecsort(eval(Vec(Str(n^2))), , 8)==6, s=concat(s, n^2))); s
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Colin Barker, Jan 15 2014
STATUS
approved