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.

A371562 G.f. A(x) satisfies A(x) = 1 + x/A(x)^3 * (1 + A(x)^5).

Original entry on oeis.org

1, 2, -2, 30, -166, 1514, -12474, 114006, -1050830, 10005138, -96772786, 951500686, -9469982966, 95267209850, -966979784554, 9891522355270, -101866781649310, 1055294818173474, -10989809960251490, 114983445265899774, -1208092406024272710
Offset: 0

Views

Author

Seiichi Manyama, Apr 13 2024

Keywords

Crossrefs

Programs

  • PARI
    a(n) = if(n==0, 1, (-1)^(n-1)*sum(k=0, n, binomial(n, k)*binomial(4*n-5*k-2, n-1))/n);

Formula

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