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.

A383991 Series expansion of the exponential generating function exp(-tridend(-x)) - 1 where tridend(x) = (1 - 3*x - sqrt(1-6*x+x^2)) / (4*x) (A001003).

Original entry on oeis.org

0, 1, -5, 49, -743, 15421, -407909, 13135165, -498874991, 21838772377, -1082819193029, 59983280191561, -3671752681190615, 246130081055714389, -17932045676505509093, 1410893903131294766101, -119227840965746009631839, 10769985399394862863318705
Offset: 0

Views

Author

Michael De Vlieger, May 16 2025

Keywords

Comments

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

Crossrefs

Programs

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