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.

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

Original entry on oeis.org

1, 2, 7, 54, 419, 3644, 33366, 317672, 3113559, 31200060, 318219653, 3292546660, 34475311605, 364621943538, 3889561661610, 41799988930926, 452126713579192, 4918321519144206, 53773399008883695, 590578523863692086, 6512515698908748358
Offset: 0

Views

Author

Seiichi Manyama, Mar 29 2024

Keywords

Crossrefs

Programs

  • PARI
    a(n, r=2, s=3, t=0, u=6) = r*sum(k=0, n, binomial(t*k+u*(n-k)+r, k)*binomial(n+(s-1)*k-1, n-k)/(t*k+u*(n-k)+r));

Formula

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