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 A309237 #16 Dec 06 2024 15:33:31 %S A309237 0,1,2,8,25,73,204,565,1557,4275,11710,32022,87464,238692,650971, %T A309237 1774466 %N A309237 Records in the indices of largest unsigned Stirling number of first kind: a(n) = smallest m such that c(m,n) = max_{k=0,1...,m} c(m,k). %C A309237 Smallest m such that A065048(m-1) = c(m,n). %C A309237 For k in the interval [a(n),a(n+1)-1], A065048(k-1) = c(k,n). %C A309237 Ratio a(n+1)/a(n) seems to decrease and tend to exp(1) as n grows. %e A309237 n=2 is a value for index k delivering the maximum value of c(m,k) for each fixed m in the interval [a(2),a(3)-1] = [2,7]. Then, for m in [a(3),a(4)-1] = [8,24], the maximum is given by c(m,3), and so on. %o A309237 (PARI) { A309237(n) = my(t=prod(i=1,n-1,x+i+O(x^n)), m=n); while( polcoef(t,n-1)-polcoef(t,n-2) < 0, t*=x+m; m++); m; } %Y A309237 Cf. A000254, A000399, A008275, A065048. %K A309237 nonn,more %O A309237 0,3 %A A309237 _Max Alekseyev_, Jul 17 2019 %E A309237 a(14)-a(15) from _Alexander Fritsch_ and _Johann Peters_, Dec 04 2024