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.

A365158 G.f. satisfies A(x) = ( 1 + x*A(x)^2*(1 + x*A(x))^3 )^3.

Original entry on oeis.org

1, 3, 30, 352, 4680, 66852, 1002420, 15562917, 248028012, 4034367018, 66704722941, 1117794312987, 18942067925094, 324048616144950, 5588890522700901, 97074537335184054, 1696556614819124517, 29812650855663860436, 526429300730659123740
Offset: 0

Views

Author

Seiichi Manyama, Aug 23 2023

Keywords

Crossrefs

Programs

  • PARI
    a(n, s=3, t=3) = sum(k=0, n, binomial(t*(n+k+1), k)*binomial(s*k, 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(s*k,n-k)/(n+k+1).
Showing 1-1 of 1 results.