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.

A383993 Series expansion of the exponential generating function exp(tridup^!(x)) - 1 where tridup^!(x) = x / ((1+x) * (1+2*x)).

Original entry on oeis.org

0, 1, -5, 25, -119, 301, 5611, -171275, 3574705, -68597639, 1282415131, -23479249199, 409082338105, -6146707844315, 46462772999371, 2072826643602541, -160983324879816479, 8004468391727017585, -352443295329194182085, 14817357881274444545161
Offset: 0

Views

Author

Michael De Vlieger, May 16 2025

Keywords

Comments

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

Crossrefs

Programs

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