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.

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

Original entry on oeis.org

1, 1, 2, 5, 20, 100, 610, 4270, 34160, 307160, 3071600, 33787600, 405466600, 5271065800, 73794921200, 1106922416600, 17710758665600, 301082897315200, 5419492342264000, 102970354503016000, 2059407090060320000, 43247548855054544000, 951446074811199968000
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/6)/(1-x)))
    
  • PARI
    a(n) = n!*sum(k=0, n\3, (-1)^k/(6^k*k!));

Formula

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