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.

A377705 G.f. A(x) satisfies A(x) = 1 + x/A(x)^2 * (1 - A(x) + A(x)^3).

Original entry on oeis.org

1, 1, 0, 2, -3, 12, -35, 121, -413, 1464, -5265, 19249, -71236, 266443, -1005511, 3824055, -14641264, 56389272, -218315173, 849170605, -3316817080, 13004273475, -51160638706, 201901154910, -799059730844, 3170706566751, -12611882813645, 50277271079611
Offset: 0

Views

Author

Seiichi Manyama, Dec 12 2024

Keywords

Crossrefs

Programs

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

Formula

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