A239009 Exponents m such that the decimal expansion of 4^m exhibits its first zero from the right later than any previous exponent.
0, 2, 4, 7, 9, 12, 14, 16, 17, 23, 34, 36, 38, 43, 77, 88, 216, 350, 979, 24186, 28678, 134759, 205829, 374627, 2200364, 16625243, 29451854, 162613199, 8078176309, 9252290259, 17556077280, 49718535383, 51616746477, 54585993918
Offset: 1
Crossrefs
Programs
-
Mathematica
f[n_] := Position[ Reverse@ Join[{0}, IntegerDigits[ PowerMod[4, n, 10^500]]], 0, 1, 1][[1, 1]]; k = mx = 0; lst = {}; While[k < 100000001, c = f[k]; If[c > mx, mx = c; AppendTo[ lst, k]; Print@ k]; k++]; lst
Extensions
a(28)-a(30) from Bert Dobbelaere, Jan 21 2019
a(31)-a(34) from Chai Wah Wu, Jan 08 2020
Comments