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.

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

Original entry on oeis.org

1, 4, 34, 392, 5271, 77530, 1208602, 19620262, 328167191, 5616065633, 97867738285, 1730732539345, 30981439344096, 560293394484145, 10221582080782452, 187884236846039893, 3476266045318846245, 64690833375603622619, 1210026171180264742927, 22736845507710710652858
Offset: 0

Views

Author

Seiichi Manyama, Dec 17 2024

Keywords

Crossrefs

Programs

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

Formula

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