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”).

A298607
Powers of 2 with the digit '0' in their decimal expansion.
2
1024, 2048, 4096, 131072, 1048576, 2097152, 4194304, 8388608, 67108864, 536870912, 1073741824, 274877906944, 1099511627776, 2199023255552, 4398046511104, 8796093022208, 17592186044416, 35184372088832, 70368744177664, 140737488355328, 281474976710656, 1125899906842624
OFFSET
1,1
COMMENTS
The complement, A238938, is conjectured to be finite. Furthermore, Khovanova (see link) believes 2^86 = 77371252455336267181195264 is the largest power of 2 not in this sequence.
LINKS
Tanya Khovanova, "86 Conjecture", Tanya Khovanova's Math Blog, February 15, 2011.
EXAMPLE
2^12 = 4096 contains one 0 in its decimal representation, hence 4096 is in the sequence.
2^13 = 8192 contains no 0's and is thus not in the sequence.
MATHEMATICA
Select[2^Range[0, 63], DigitCount[#, 10, 0] > 0 &]
PROG
(PARI) lista(nn) = {for (n=0, nn, if (vecsearch(Set(digits(p=2^n)), 0), print1(p, ", ")); ); } \\ Michel Marcus, Mar 05 2018
CROSSREFS
Sequence in context: A046314 A221260 A223065 * A366391 A195093 A258734
KEYWORD
nonn,base
AUTHOR
Alonso del Arte, Jan 22 2018
STATUS
approved