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

A364758 G.f. A(x) satisfies A(x) = 1 + x*A(x)^4 / (1 + x*A(x)).

Original entry on oeis.org

1, 1, 3, 14, 76, 450, 2818, 18352, 123028, 843345, 5884227, 41650479, 298352365, 2158751879, 15754446893, 115830820439, 857147952469, 6379136387303, 47715901304501, 358529599468636, 2704884469806606, 20481615947325089, 155605509972859999, 1185779099027494848
Offset: 0

Views

Author

Seiichi Manyama, Aug 05 2023

Keywords

Crossrefs

Programs

  • PARI
    a(n) = if(n==0, 1, sum(k=0, n-1, (-1)^k*binomial(n, k)*binomial(4*n-3*k, n-1-k))/n);
    
  • PARI
    a(n, r=1, s=-1, t=4, u=1) = r*sum(k=0, n, binomial(t*k+u*(n-k)+r, k)*binomial(s*k, n-k)/(t*k+u*(n-k)+r)); \\ Seiichi Manyama, Dec 11 2024

Formula

a(n) = (1/n) * Sum_{k=0..n-1} (-1)^k * binomial(n,k) * binomial(4*n-3*k,n-1-k) for n > 0.
From Seiichi Manyama, Dec 11 2024: (Start)
G.f. A(x) satisfies A(x)^3 = 1 + x*A(x) + x*A(x)^5 + x*A(x)^6.
G.f. A(x) satisfies A(x) = 1/(1 - x*A(x)^3/(1 + x*A(x))).
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). (End)

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

Original entry on oeis.org

1, 3, 18, 142, 1278, 12429, 127223, 1350456, 14729628, 164079982, 1858781652, 21348787587, 248021665720, 2909439099543, 34413536180688, 409984974779725, 4915119769384221, 59252402698999209, 717819918438472134, 8734481867945979183, 106703642464149880248
Offset: 0

Views

Author

Seiichi Manyama, Dec 10 2024

Keywords

Crossrefs

Programs

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

G.f. A(x) satisfies A(x) = 1/( 1 - x*A(x)^(5/3)/(1 + x*A(x)) )^3.
G.f. A(x) satisfies A(x) = 1 + x * A(x) * (1 + A(x)^(4/3) + A(x)^(5/3)).
G.f.: A(x) = B(x)^3 where B(x) is the g.f. of A378892.
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).

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

Original entry on oeis.org

1, 3, 15, 97, 711, 5613, 46552, 399918, 3527553, 31761600, 290721387, 2697131541, 25304974597, 239684681523, 2288849098119, 22012319667437, 213011739042714, 2072597720747352, 20264567643461700, 198998140737895692, 1961831436443431818, 19409477239837165874
Offset: 0

Views

Author

Seiichi Manyama, Dec 10 2024

Keywords

Crossrefs

Programs

  • PARI
    a(n, r=3, 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

G.f. A(x) satisfies A(x) = 1/( 1 - x*A(x)^(4/3)/(1 + x*A(x)^(2/3)) )^3.
G.f. A(x) satisfies A(x) = 1 + x * A(x)^(2/3) * (1 + A(x)^(4/3) + A(x)^(5/3)).
G.f.: A(x) = B(x)^3 where B(x) is the g.f. of A365225.
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).

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

Original entry on oeis.org

1, 3, 12, 61, 354, 2220, 14649, 100218, 704373, 5055383, 36895221, 272975652, 2042782905, 15434838759, 117588475377, 902259691317, 6966487019220, 54086849181609, 421986564474946, 3306818224272945, 26015737668878523, 205405810986995869, 1627042895593132485
Offset: 0

Views

Author

Seiichi Manyama, Dec 09 2024

Keywords

Crossrefs

Programs

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

G.f. A(x) satisfies A(x) = 1/( 1 - x*A(x)^(1/3)/(1 - x*A(x)^(4/3)) )^3.
G.f. A(x) satisfies A(x) = 1 + x * A(x)^(2/3) * (1 + A(x)^(1/3) + A(x)^(5/3)).
G.f.: A(x) = B(x)^3 where B(x) is the g.f. of A364739.
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-4 of 4 results.