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!)
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 (list; graph; refs; listen; history; text; internal format)
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
Sequence in context: A056734 A019995 A188802 * A143263 A327138 A102624
KEYWORD
nonn,base,more
AUTHOR
EXTENSIONS
More terms from Dan Hoey
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 20 09:59 EDT 2024. Contains 371807 sequences. (Running on oeis4.)