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 A153687 #15 May 16 2020 15:26:18 %S A153687 1,2,3,4,5,6,7,23,56,77,103,320,1477,1821,2992,15290,180168,410498, %T A153687 548816,672732,2601223 %N A153687 Minimal exponents m such that the fractional part of (11/10)^m obtains a maximum (when starting with m=1). %C A153687 Recursive definition: a(1)=1, a(n) = least number m>a(n-1) such that the fractional part of (11/10)^m is greater than the fractional part of (11/10)^k for all k, 1<=k<m. %C A153687 The next such number must be greater than 2*10^5. %C A153687 a(22) > 10^7. _Robert Price_, Mar 19 2019 %F A153687 Recursion: a(1):=1, a(k):=min{ m>1 | fract((11/10)^m) > fract((11/10)^a(k-1))}, where fract(x) = x-floor(x). %e A153687 a(8)=23, since fract((11/10)^23)= 0.9543..., but fract((11/10)^k)<0.95 for 1<=k<=22; %e A153687 thus fract((11/10)^23)>fract((11/10)^k) for 1<=k<23 and 23 is the minimal exponent > 7 with this property. %t A153687 p = 0; Select[Range[1, 50000], %t A153687 If[FractionalPart[(11/10)^#] > p, p = FractionalPart[(11/10)^#]; %t A153687 True] &] (* _Robert Price_, Mar 19 2019 *) %o A153687 (Python) %o A153687 A153687_list, m, n, k, q = [], 1, 11, 10, 0 %o A153687 while m < 10**4: %o A153687 r = n % k %o A153687 if r > q: %o A153687 q = r %o A153687 A153687_list.append(m) %o A153687 m += 1 %o A153687 n *= 11 %o A153687 k *= 10 %o A153687 q *= 10 # _Chai Wah Wu_, May 16 2020 %Y A153687 Cf. A153663, A153671, A153683, A153679, A154130, A153695, A091560, A153711, A153719. %K A153687 nonn,more %O A153687 1,2 %A A153687 _Hieronymus Fischer_, Jan 06 2009 %E A153687 a(18)-a(21) from _Robert Price_, Mar 19 2019