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!)
A248077 Least number k > 0 such that k^k contains exactly n distinct digits. 0
1, 3, 4, 5, 7, 14, 9, 11, 13, 19 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Unlike A054039 and A247794, "...at least n..." and "...exactly n..." are two different sequences. a(n) above gives "...exactly n..." whereas, for "...at least n...", the sequence would be 1, 3, 4, 5, 7, 9, 9, 11, 13, 19, where a(6) would be 9 instead of 14.
LINKS
EXAMPLE
7^7 = 823543 has 5 distinct digits. 6^6, 5^5, 4^4, 3^3, 2^2, and 1^1 all do not have 5 distinct digits. So a(5) = 7.
PROG
(PARI)
a(n)=k=1; while(#vecsort(digits(k^k), , 8)!=n, k++); k
vector(10, n, a(n))
CROSSREFS
Sequence in context: A284618 A101759 A089560 * A239547 A060728 A330712
KEYWORD
nonn,base,fini,full,easy
AUTHOR
Derek Orr, Sep 30 2014
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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)