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.

Showing 1-1 of 1 results.

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

Original entry on oeis.org

1, 2, 11, 76, 591, 4938, 43297, 393006, 3661500, 34813530, 336447364, 3295264162, 32636826276, 326310118860, 3289090885545, 33386999310460, 341000875306393, 3501847259286514, 36136109243651145, 374513918968721080, 3896634418483676797
Offset: 0

Views

Author

Seiichi Manyama, Aug 23 2023

Keywords

Crossrefs

Programs

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

Formula

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