This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A239015 #29 Jan 16 2020 13:03:14 %S A239015 0,1,2,3,4,6,7,8,9,12,13,14,15,16,18,36,41,366,488,4357,69137,89371, %T A239015 143907,542116,2431369,5877361,8966861,121915452,123793821,221788016, %U A239015 709455085,1571200127,2640630712,6637360862,64994336645,74770246842 %N A239015 Exponents m such that the decimal expansion of 11^m exhibits its first zero from the right later than any previous exponent. %C A239015 Assume that a zero precedes all decimal expansions. This will take care of those cases in A001020. %C A239015 Inspired by the seqfan list discussion Re: "possible sequence", beginning with David Wilson 7:57 PM Mar 06 2014 and continued by _M. F. Hasler_, Allan Wechsler and _Franklin T. Adams-Watters_. %e A239015 Illustration of initial term, with the 0 enclosed in parentheses: %e A239015 n, position of 0, 11^a(n) %e A239015 1, 2, (0)1 %e A239015 2, 3, (0)11 %e A239015 3, 4, (0)121 %e A239015 4, 5, (0)1331 %e A239015 5, 6, (0)14641 %e A239015 6, 7, (0)1771561 %e A239015 7, 8, (0)19487171 %e A239015 8, 9, (0)214358881 %e A239015 9, 10, (0)2357947691 %e A239015 10, 11, (0)3138428376721 %e A239015 11, 12, (0)34522712143931 %e A239015 12, 13, (0)379749833583241 %e A239015 13, 14, (0)4177248169415651 %e A239015 14, 15, (0)45949729863572161 %e A239015 15, 16, (0)5559917313492231481 %e A239015 16, 17, 3091268053287(0)672635673352936887453361 %e A239015 ... %e A239015 - _N. J. A. Sloane_, Jan 16 2020 %t A239015 f[n_] := Position[ Reverse@ Join[{0}, IntegerDigits[ PowerMod[11, n, 10^500]]], 0, 1, 1][[1, 1]]; k = mx = 0; lst = {}; While[k < 40000001, c = f[k]; If[c > mx, mx = c; AppendTo[ lst, k]; Print@ k]; k++]; lst %Y A239015 Cf. A001020, A030706, A020665, A031142, A239008, A239009, A239010, A239011, A239012, A239013, A239014. %K A239015 nonn,base,more %O A239015 1,3 %A A239015 _Charles R Greathouse IV_ and _Robert G. Wilson v_, Mar 14 2014 %E A239015 a(28)-a(34) from _Bert Dobbelaere_, Jan 22 2019 %E A239015 a(35)-a(36) from _Chai Wah Wu_, Jan 16 2020