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.

A383985 Series expansion of the exponential generating function LambertW(1-exp(x)), see A000169.

Original entry on oeis.org

0, 1, -1, 4, -23, 181, -1812, 22037, -315569, 5201602, -97009833, 2019669961, -46432870222, 1168383075471, -31939474693297, 942565598033196, -29866348653695203, 1011335905644178273, -36446897413531401020, 1392821757824071815641, -56259101478392975833333
Offset: 0

Views

Author

Michael De Vlieger, May 16 2025

Keywords

Crossrefs

Composition of A000169 with signs and 1-exp(x).

Programs

  • Mathematica
    nn = 20; f[x_] := -Sum[k^(k - 1)*(1 - Exp[x])^k/k!, {k, nn}];
    Range[0, nn]! * CoefficientList[Series[f[x], {x, 0, nn}], x]