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.

A366216 G.f. A(x) satisfies A(x) = 1 + x*(1 + x)^4*A(x)^4.

Original entry on oeis.org

1, 1, 8, 60, 520, 4886, 48384, 497460, 5259872, 56834345, 624819148, 6966612604, 78592083420, 895432704860, 10288759392156, 119089472755860, 1387274092156508, 16251727492295812, 191342076640423136, 2262894045516407118, 26869820052175649836
Offset: 0

Views

Author

Seiichi Manyama, Oct 04 2023

Keywords

Crossrefs

Programs

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

Formula

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