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.

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

Original entry on oeis.org

1, 1, 1, -1, -7, -19, 1, 211, 1009, 953, -14239, -105049, -209879, 1669669, 18057313, 56255291, -294375199, -4628130319, -19929569471, 70149241423, 1652969810521, 9226206209501, -20236475188159, -783908527648861, -5452368869656367
Offset: 0

Views

Author

Seiichi Manyama, Apr 15 2023

Keywords

Crossrefs

Column k=2 of A362302.

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(x-x^3/3)))

Formula

a(n) = a(n-1) - 2 * binomial(n-1,2) * a(n-3) for n > 2.
a(n) = n! * Sum_{k=0..floor(n/3)} (-1/3)^k / (k! * (n-3*k)!).