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.

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

Original entry on oeis.org

1, 1, -6, 36, -272, 2304, -20880, 198080, -1942080, 19521792, -200101376, 2083538688, -21976624128, 234321952768, -2521446660096, 27347192389632, -298643542716416, 3280990949720064, -36238161907974144, 402146115064233984, -4481721683926056960
Offset: 0

Views

Author

Seiichi Manyama, Oct 09 2023

Keywords

Crossrefs

Partial sums give A366365.

Programs

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

Formula

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