[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A260814
Powers of 2 with distinct digits.
2
1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768, 1048576, 536870912
OFFSET
1,2
FORMULA
a(n) = 2^A084688(n).
MATHEMATICA
Select[2^Range[0, 34], Max@ DigitCount@ # == 1 &] (* Michael De Vlieger, Aug 03 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
KEYWORD
nonn,base,fini,full
AUTHOR
Zak Seidov, Aug 02 2015
STATUS
approved