OFFSET
1,2
COMMENTS
"Positions" are counted 0,1,2,3,... starting with the least significant digit.
86 is the last n for which the rightmost zero is the leading zero.
LINKS
Alan Griffiths, Table of n, a(n) for n = 1..46 (reuploaded from a-file by Georg Fischer, Jan 21 2019)
MATHEMATICA
best = 0;
Select[Range[0, 10000],
If[(t = First@
First@StringPosition[StringReverse@("0" <> ToString@(2^#)),
"0"]) > best, best = t; True] &] (* Robert Price, Oct 11 2019 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
EXTENSIONS
a(39)-a(41) added (to match A031140) by Tanya Khovanova, Feb 02 2011
a(42)-a(44) from Alan Griffiths, Jan 25 2012
STATUS
approved