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.

A370696 Expansion of e.g.f. exp(x^3)/(1-x).

Original entry on oeis.org

1, 1, 2, 12, 48, 240, 1800, 12600, 100800, 967680, 9676800, 106444800, 1297296000, 16864848000, 236107872000, 3552515366400, 56840245862400, 966284179660800, 17402007419596800, 330638140972339200, 6612762819446784000, 138878156300083200000
Offset: 0

Views

Author

Seiichi Manyama, Feb 27 2024

Keywords

Crossrefs

Programs

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

Formula

a(n) = n! * Sum_{k=0..floor(n/3)} 1/k!.