cp's OEIS Frontend

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.

A305304 Expansion of e.g.f. 1/(1 + LambertW(-x/(1 + x))).

This page as a plain text file.
%I A305304 #11 Mar 27 2019 03:52:42
%S A305304 1,1,2,9,52,405,3786,42301,542984,7924041,129110230,2327399481,
%T A305304 45940938924,986045445853,22856850513602,569163515043285,
%U A305304 15150885843083536,429364157810169105,12905794670246364078,410108007771441394129,13736898888997174964660,483740530150449507164901,17866185834825657429606682
%N A305304 Expansion of e.g.f. 1/(1 + LambertW(-x/(1 + x))).
%C A305304 Inverse Lah transform of A000312.
%H A305304 N. J. A. Sloane, <a href="/transforms.txt">Transforms</a>
%F A305304 a(n) = Sum_{k=0..n} (-1)^(n-k)*binomial(n-1,k-1)*k^k*n!/k!.
%F A305304 a(n) ~ n^n * (exp(1) - 1)^(n - 1/2) / exp(n - 1/2). - _Vaclav Kotesovec_, Aug 18 2018
%p A305304 a:=series(1/(1+LambertW(-x/(1+x))),x=0,23): seq(n!*coeff(a,x,n),n=0..22); # _Paolo P. Lava_, Mar 26 2019
%t A305304 nmax = 22; CoefficientList[Series[1/(1 + LambertW[-x/(1 + x)]), {x, 0, nmax}], x] Range[0, nmax]!
%t A305304 Join[{1}, Table[Sum[(-1)^(n - k) Binomial[n - 1, k - 1] k^k n!/k!, {k, n}], {n, 22}]]
%Y A305304 Cf. A000312, A052871, A060356, A305276.
%K A305304 nonn
%O A305304 0,3
%A A305304 _Ilya Gutkovskiy_, Aug 18 2018