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.

A375413 Expansion of e.g.f. exp(x^2 * (1 - x)^2) / (1 - x).

Original entry on oeis.org

1, 1, 4, 0, 36, -60, 1920, -1680, 109200, -347760, 9858240, -27941760, 1321911360, -3675672000, 210819248640, -422918496000, 45482678841600, 432259027200, 11915705273472000, 32436011672064000, 3902063601673036800, 25891695005316940800, 1575143884245502771200
Offset: 0

Views

Author

Seiichi Manyama, Aug 14 2024

Keywords

Crossrefs

Programs

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

Formula

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