|
Search: id:A054039
|
|
|
| A054039 |
|
a(n)^2 is the least square to contain n different decimal digits. |
|
+0 9
|
| |
|
|
OFFSET
|
1,2
|
|
|
COMMENT
|
It turns out that "...at least n..." and "...exactly n..." yield the same (and thus strictly increasing) sequence. - M. F. Hasler, Feb 02 2009
|
|
EXAMPLE
|
13^2=169 is the first square to contain exactly 3 different digits; 322^2=103684 is the first square to contain exactly 6 different digits.
|
|
PROGRAM
|
(PARI) A054039(n, k=0) = { while( #Set(Vec(Str(k^2)))<n, k++); k } /* If "exactly n" would correspond to a different sequence, this would yield some term twice in a row. The optional 2nd arg can be used to find further terms with a given # of distinct digits. - M. F. Hasler, Feb 02 2009 */
|
|
CROSSREFS
|
Cf. A016069, A054031, A054032, A054033, A054034, A054035, A054036, A054037, A054038.
Sequence in context: A051912 A060099 A036420 this_sequence A124669 A036894 A135859
Adjacent sequences: A054036 A054037 A054038 this_sequence A054040 A054041 A054042
|
|
KEYWORD
|
nonn,fini,full,base,easy
|
|
AUTHOR
|
Asher Auel (asher.auel(AT)reed.edu) Feb 28 2000
|
|
EXTENSIONS
|
Minor rewording, added comment, keywords "easy,full" and PARI code M. F. Hasler (MHasler(AT)univ-ag.fr), Feb 02 2009
|
|
|
Search completed in 0.002 seconds
|