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 A371140 #15 Mar 12 2024 08:53:26 %S A371140 1,0,2,3,56,270,5064,47040,984416,14116032,336538080,6589416240, %T A371140 179336461248,4446985514400,137520942168960,4112410749501600, %U A371140 143445512622458880,5004065722611594240,195260931334478223360,7762385328551718796800,336051947630616458065920 %N A371140 E.g.f. satisfies A(x) = 1 - x*A(x)^2 * log(1 - x). %F A371140 E.g.f.: 2/(1 + sqrt(1+4*x*log(1-x))). %F A371140 a(n) = n! * Sum_{k=0..floor(n/2)} (2*k)!/(k+1)! * |Stirling1(n-k,k)|/(n-k)!. %F A371140 a(n) ~ sqrt(2 + 8*r^2/(1-r)) * n^(n-1) / (exp(n) * r^n), where r = 0.436224579489690436773045325306926562580857950193340891933383996... is the root of the equation 4*r*log(1-r) = -1. - _Vaclav Kotesovec_, Mar 12 2024 %t A371140 nmax = 20; CoefficientList[Series[(-1 + Sqrt[1 + 4*x*Log[1 - x]])/(2*x*Log[1 - x]), {x, 0, nmax}], x] * Range[0, nmax]! (* _Vaclav Kotesovec_, Mar 12 2024 *) %o A371140 (PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(2/(1+sqrt(1+4*x*log(1-x))))) %o A371140 (PARI) a(n) = n!*sum(k=0, n\2, (2*k)!/(k+1)!*abs(stirling(n-k, k, 1))/(n-k)!); %Y A371140 Cf. A052830, A371141. %Y A371140 Cf. A052803. %K A371140 nonn %O A371140 0,3 %A A371140 _Seiichi Manyama_, Mar 12 2024