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.

Showing 1-1 of 1 results.

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

Original entry on oeis.org

1, 1, 6, 57, 748, 12565, 257526, 6232765, 173980920, 5502613833, 194477548330, 7596028355641, 324920533473108, 15106155118606045, 758463525318426942, 40901033617318501845, 2357682497456804486896, 144670077586483815863569, 9414952083720893890165842, 647715776085173413399687633
Offset: 0

Views

Author

Ilya Gutkovskiy, Aug 18 2018

Keywords

Comments

Lah transform of A000312.

Crossrefs

Programs

  • Maple
    S:= series(1/(1+LambertW(-x/(1-x))),x,51):
    seq(coeff(S,x,j)*j!,j=0..50); # Robert Israel, Aug 19 2018
  • Mathematica
    nmax = 19; CoefficientList[Series[1/(1 + LambertW[-x/(1 - x)]), {x, 0, nmax}], x] Range[0, nmax]!
    Join[{1}, Table[Sum[Binomial[n - 1, k - 1] k^k n!/k!, {k, n}], {n, 19}]]

Formula

a(n) = Sum_{k=0..n} binomial(n-1,k-1)*k^k*n!/k!.
a(n) ~ n^n * (1 + exp(1))^(n - 1/2) / exp(n - 1/2). - Vaclav Kotesovec, Aug 18 2018
Showing 1-1 of 1 results.