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!)
A084688 Nonnegative integers n such that 2^n uses only distinct decimal digits. 2
0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 20, 29 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
There are exactly 18 numbers such that 2^n uses only distinct digits.
a(n) can have at most 10 digits. As 2^34 has 11 digits, a(n) < 34. - David A. Corneth, Aug 03 2015
Subsequence of A052060. - R. J. Mathar, Sep 17 2008
LINKS
FORMULA
a(n) = log_2(A260814(n)). - Zak Seidov, Aug 02 2015
EXAMPLE
29 is the last term with 2^29 = 536870912 = A260814(18). - Zak Seidov, Aug 02 2015
MATHEMATICA
Select[Range[0, 34], Max@ DigitCount[2^#] == 1 &] (* Michael De Vlieger, Aug 03 2015 *) (* with corrections by Zak Seidov, Aug 05 2015 *)
PROG
(PARI) lista() = {lim = ceil(log(10^11)/(log(2))); for (n=0, lim, d = digits(2^n); if (#vecsort(d, , 8) == #d, print1(n, ", ")); ); } \\ Michel Marcus, Aug 03 2015
CROSSREFS
Sequence in context: A252493 A005496 A052060 * A194898 A331271 A267016
KEYWORD
fini,nonn,full,base
AUTHOR
Zak Seidov, Jul 01 2003
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 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)