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.

A379943 Expansion of e.g.f. 1/( exp(-x) - x )^4.

Original entry on oeis.org

1, 8, 76, 844, 10776, 155844, 2520856, 45125924, 886037216, 18938440324, 437820992136, 10886467502244, 289738784758096, 8218731027307844, 247539834718198136, 7889896358130120484, 265325716114102815936, 9388476560982511842564, 348703400008471862936296
Offset: 0

Views

Author

Seiichi Manyama, Jan 07 2025

Keywords

Crossrefs

Programs

  • PARI
    my(N=20, x='x+O('x^N)); Vec(serlaplace(1/(exp(-x)-x)^4))
    
  • PARI
    a(n) = n!*sum(k=0, n, (k+4)^(n-k)*binomial(k+3, 3)/(n-k)!);

Formula

E.g.f.: B(x)^4, where B(x) is the e.g.f. of A072597.
a(n) = n! * Sum_{k=0..n} (k+4)^(n-k) * binomial(k+3,3)/(n-k)!.