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.

A383988 Series expansion of the exponential generating function -postLie(1-exp(x)) where postLie(x) = -log((1 + sqrt(1-4*x)) / 2) (given by A006963).

Original entry on oeis.org

0, 1, -2, 12, -110, 1380, -22022, 426972, -9747950, 256176660, -7617417302, 252851339532, -9268406209790, 371843710214340, -16206868062692582, 762569209601624892, -38525315595630383630, 2079964082064837282420, -119513562475103977951862
Offset: 0

Views

Author

Michael De Vlieger, May 16 2025

Keywords

Comments

The series -postLie(-x) is the inverse for the substitution of the series comTrias(x), given by the suspension of the Koszul dual of comTrias. - Bérénice Delcroix-Oger, May 28 2025

Crossrefs

Cf. A002050, A006531, A084099, A097388, A101851, A114285, A225883, A383985, A383986, A383987, A383989. Composition of -A006963(-x) and exp(x)-1.

Programs

  • Mathematica
    nn = 18; f[x_] := Log[(1 + Sqrt[1 + 4*x])/2];
    Range[0, nn]! * CoefficientList[Series[f[-(1 - Exp[x])], {x, 0, nn}], x]