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.

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

Original entry on oeis.org

1, 2, 20, 296, 5168, 98896, 2006592, 42403584, 923292672, 20570204672, 466681402112, 10744734700032, 250415336695808, 5896251565619200, 140051037257007104, 3351752341884928000, 80744484314316193792, 1956433860220223062016, 47647871136991576260608
Offset: 0

Views

Author

Seiichi Manyama, Dec 19 2024

Keywords

Crossrefs

Cf. A379257.

Programs

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

Formula

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