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.

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

Original entry on oeis.org

1, 2, 9, 48, 284, 1792, 11816, 80446, 561186, 3990398, 28815594, 210746538, 1557834174, 11620294376, 87357498949, 661194915408, 5034368831334, 38534430714502, 296341243824737, 2288568585083816, 17741278361562738, 138006870242288796, 1076905750814353045
Offset: 0

Views

Author

Seiichi Manyama, Aug 23 2023

Keywords

Crossrefs

Programs

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

Formula

If g.f. satisfies A(x) = (1 + x*A(x)/(1 - x*A(x))^s)^t, then a(n) = (1/(n+1)) * Sum_{k=0..n} binomial(t*(n+1),k) * binomial(n+(s-1)*k-1,n-k).