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 A308346 #17 Sep 08 2022 08:46:21 %S A308346 1,0,-2,-6,-10,20,352,2772,18132,104400,469608,238920,-35811048, %T A308346 -730972944,-11436661728,-164609993520,-2294024595312,-31488879303552, %U A308346 -426338226719904,-5626751283423072,-70000948158061728,-745703905072996800,-4142683990211677440,110386551348875714880 %N A308346 Expansion of e.g.f. 1/(1 - x)^log(1 - x). %H A308346 Robert Israel, <a href="/A308346/b308346.txt">Table of n, a(n) for n = 0..453</a> %F A308346 a(n) = Sum_{k=0..n} |Stirling1(n,k)|*A067994(k). %p A308346 E:= 1/(1-x)^log(1-x): %p A308346 S:= series(E,x,31): %p A308346 seq(coeff(S,x,j)*j!,j=0..30); # _Robert Israel_, May 22 2019 %t A308346 nmax = 23; CoefficientList[Series[1/(1 - x)^Log[1 - x], {x, 0, nmax}], x] Range[0, nmax]! %t A308346 Table[Sum[Abs[StirlingS1[n, k]] HermiteH[k, 0], {k, 0, n}], {n, 0, 23}] %t A308346 a[n_] := a[n] = -2 Sum[(k - 1)! HarmonicNumber[k - 1] Binomial[n - 1, k - 1] a[n - k], {k, 2, n}]; a[0] = 1; Table[a[n], {n, 0, 23}] %o A308346 (PARI) a(n) = sum(k=0, n, abs(stirling(n, k, 1))*polhermite(k, 0)); \\ _Michel Marcus_, May 21 2019 %o A308346 (Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!( (1-x)^Log(1/(1-x)) )); [Factorial(n-1)*b[n]: n in [1..m]]; // _G. C. Greubel_, May 21 2019 %o A308346 (Sage) m = 30; T = taylor((1-x)^log(1/(1-x)), x, 0, m); [factorial(n)*T.coefficient(x, n) for n in (0..m)] # _G. C. Greubel_, May 21 2019 %Y A308346 Cf. A000254, A008405, A009199, A052517, A067994, A086660, A087761. %K A308346 sign,look %O A308346 0,3 %A A308346 _Ilya Gutkovskiy_, May 21 2019