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-2 of 2 results.

A371574 G.f. satisfies A(x) = ( 1 + x*A(x)^(5/2) * (1 + x*A(x)) )^2.

Original entry on oeis.org

1, 2, 13, 106, 986, 9902, 104641, 1146654, 12910674, 148462310, 1736178005, 20584835962, 246874102771, 2989580399330, 36504669373240, 448960388422126, 5556453433915920, 69150493021938224, 864833621158491876, 10863849369160145222, 137011477676531989664
Offset: 0

Views

Author

Seiichi Manyama, Mar 28 2024

Keywords

Crossrefs

Programs

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

Formula

If g.f. satisfies A(x) = ( 1 + x*A(x)^(t/r) * (1 + x*A(x)^(u/r))^s )^r, then a(n) = r * Sum_{k=0..n} binomial(t*k+u*(n-k)+r,k) * binomial(s*k,n-k)/(t*k+u*(n-k)+r).
G.f.: A(x) = B(x)^2 where B(x) is the g.f. of A365186.

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

Original entry on oeis.org

1, 2, 15, 146, 1623, 19526, 247516, 3256118, 44037023, 608484766, 8552832116, 121908218724, 1757915510695, 25598937436696, 375916184707142, 5560517754432772, 82774606577536376, 1239110145377709862, 18641533742708676711, 281697878640036748684
Offset: 0

Views

Author

Seiichi Manyama, Mar 28 2024

Keywords

Crossrefs

Programs

  • PARI
    a(n, r=2, s=1, t=6, u=2) = 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

If g.f. satisfies A(x) = ( 1 + x*A(x)^(t/r) / (1 - x*A(x)^(u/r))^s )^r, then a(n) = 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).
Showing 1-2 of 2 results.