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.

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

Original entry on oeis.org

1, 4, 30, 286, 3091, 36063, 442898, 5642628, 73893561, 988585443, 13453580815, 185661101085, 2592069904059, 36545520229810, 519601325300487, 7441580996167052, 107255985242888943, 1554576968046707916, 22644622298400113411, 331322620547205661043
Offset: 0

Views

Author

Seiichi Manyama, Dec 17 2024

Keywords

Crossrefs

Programs

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

Formula

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