login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A054039 a(n)^2 is the least square to contain n different decimal digits. 13
0, 4, 13, 32, 113, 322, 1017, 3206, 10124, 32043 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
It turns out that "...at least n..." and "...exactly n..." yield the same (and thus strictly increasing) sequence. - M. F. Hasler, Feb 02 2009
LINKS
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.
PROG
(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
Sequence in context: A173277 A036420 A266094 * A302082 A124669 A036894
KEYWORD
nonn,fini,full,base,easy
AUTHOR
Asher Auel, Feb 28 2000
EXTENSIONS
Minor rewording, added comment, keywords "easy,full" and PARI code M. F. Hasler, Feb 02 2009
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 23:15 EDT 2024. Contains 371798 sequences. (Running on oeis4.)