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
KEYWORD
nonn,base
AUTHOR
Alonso del Arte, Jan 22 2018
STATUS
approved