A235723 Squares which have one or more occurrences of exactly eight different digits.
10278436, 10673289, 10679824, 10837264, 13498276, 13527684, 13675204, 13860729, 13942756, 16378209, 16785409, 17280649, 17430625, 19847025, 20584369, 20738916, 21307456, 21473956, 21743569, 23078416, 23174596, 23970816, 24137569, 24671089, 24870169, 28901376
Offset: 1
Examples
10278436 is in the sequence because 10278436 = 3206^2 and 10278436 contains exactly eight different digits: 0, 1, 2, 3, 4, 6, 7 and 8.
Links
- Colin Barker, Table of n, a(n) for n = 1..1000
Programs
-
PARI
s=[]; for(n=1, 10000, if(#vecsort(eval(Vec(Str(n^2))),,8)==8, s=concat(s, n^2))); s
Formula
a(n) = A054036(n)^2.
Comments