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.

Showing 1-1 of 1 results.

A376516 E.g.f. satisfies A(x) = exp(x^3 * A(x) / (1 - x)).

Original entry on oeis.org

1, 0, 0, 6, 24, 120, 1800, 20160, 221760, 3507840, 59875200, 1037836800, 20776694400, 459761702400, 10686605529600, 268901439206400, 7318617546240000, 210804082384896000, 6440850193262284800, 209115023566972723200, 7157303732396353536000, 257535328655939862528000
Offset: 0

Views

Author

Seiichi Manyama, Sep 26 2024

Keywords

Crossrefs

Programs

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

Formula

E.g.f.: exp( -LambertW(-x^3 / (1-x)) ).
a(n) = n! * Sum_{k=0..floor(n/3)} (k+1)^(k-1) * binomial(n-2*k-1,n-3*k)/k!.
Showing 1-1 of 1 results.