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.

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

Original entry on oeis.org

1, 2, 26, 506, 11650, 294338, 7889658, 220337562, 6341770050, 186793134530, 5603256962842, 170587626013306, 5257389708399426, 163705194058656258, 5142396822771086970, 162763301041914082970, 5185766155796261822338, 166183971861135163491458
Offset: 0

Views

Author

Seiichi Manyama, Dec 18 2024

Keywords

Crossrefs

Cf. A363380.

Programs

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

Formula

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