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.

A371496 G.f. A(x) satisfies A(x) = 1 / (1 - x*A(x) / (1+x))^4.

Original entry on oeis.org

1, 4, 22, 156, 1233, 10420, 92120, 841376, 7876616, 75177492, 728784802, 7156081536, 71024862452, 711383912672, 7181295333306, 72989746391780, 746308443708928, 7671359593228624, 79226966456758424, 821691132077059740, 8554576791134761387
Offset: 0

Views

Author

Seiichi Manyama, Mar 25 2024

Keywords

Crossrefs

Programs

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

Formula

a(n) = Sum_{k=0..n} (-1)^(n-k) * binomial(n-1,n-k) * binomial(5*k+3,k)/(k+1).
G.f.: A(x) = B(x)^4 where B(x) is the g.f. of A349361.