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.

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

Original entry on oeis.org

0, 1, -11, 61, -467, 4381, -49091, 643021, -9615827, 161844541, -3026079971, 62243374381, -1396619164787, 33949401567901, -888725861445251, 24926889744928141, -745755560487363347, 23705772035082494461, -797875590555470224931, 28346366547928396344301
Offset: 0

Views

Author

Michael De Vlieger, May 16 2025

Keywords

Crossrefs

Programs

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