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

A031141
Position of rightmost digit 0 in 2^A031140(n).
5
2, 5, 8, 11, 12, 13, 14, 23, 36, 38, 54, 57, 59, 93, 115, 119, 120, 121, 136, 138, 164, 174, 176, 191, 196, 212, 217, 227, 233, 249
OFFSET
1,1
COMMENTS
"Positions" are counted 0,1,2,3,... starting with the least significant digit.
LINKS
Eric Weisstein's World of Mathematics, Zero.
MATHEMATICA
best = 0;
x = Select[Range[10000],
If[(t = First@
First@StringPosition[StringReverse@ToString@(2^#), "0"]) >
best, best = t; True] &] ;
First /@ First /@
StringPosition[StringReverse[ToString /@ (2^x)],
"0"] - 1 (* Robert Price, Oct 11 2019 *)
PROG
(PARI) m=0; for(k=0, oo, d=digits(2^k); for(j=0, #d-1, d[#d-j]||(j>m&&print1(m=j, ", ")||break))) \\ M. F. Hasler, Jun 21 2018
CROSSREFS
KEYWORD
nonn,base,more
EXTENSIONS
More terms from Dan Hoey
STATUS
approved