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

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

Original entry on oeis.org

1, 4, 32, 324, 3696, 45316, 583152, 7769348, 106250144, 1482925956, 21037812352, 302478044996, 4397824031376, 64549296707460, 955150116019920, 14233474784850948, 213417133281087040, 3217460713030341892, 48741781832765496288, 741606216370357708612
Offset: 0

Views

Author

Seiichi Manyama, Apr 02 2024

Keywords

Crossrefs

Programs

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

Formula

G.f. satisfies A(x) = ( 1 + x * A(x)^(3/2) * (1 + A(x)^(1/2)) )^2.
G.f.: B(x)^2 where B(x) is the g.f. of A144097.
a(n) = 2 * Sum_{k=0..n} binomial(n,k) * binomial(3*n+k+2,n)/(3*n+k+2).
a(n) ~ sqrt((88 + 161*sqrt(2/5))/Pi) * (223 + 70*sqrt(10))^n / (n^(3/2) * 3^(3*n + 5/2)). - Vaclav Kotesovec, Nov 28 2024

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

Original entry on oeis.org

1, 4, 40, 524, 7824, 126228, 2143544, 37750812, 683194912, 12628104740, 237388091208, 4524456276524, 87228274533040, 1698091537435444, 33332913873239640, 659038408936005692, 13112372856351746112, 262338658739430857796, 5274545338183090647656
Offset: 0

Views

Author

Seiichi Manyama, Apr 02 2024

Keywords

Crossrefs

Programs

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

Formula

G.f. satisfies A(x) = ( 1 + x * A(x)^2 * (1 + A(x)^(1/2)) )^2.
a(n) = 2 * Sum_{k=0..n} binomial(n,k) * binomial(4*n+k+2,n)/(4*n+k+2).

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

Original entry on oeis.org

1, 4, 56, 1068, 23504, 561972, 14183880, 371911132, 10031990560, 276589937892, 7759696110808, 220805824681740, 6357540660485616, 184876232243020564, 5422016433851400552, 160187931368799105468, 4763038761416835095616, 142426926824923660491716
Offset: 0

Views

Author

Seiichi Manyama, Apr 02 2024

Keywords

Crossrefs

Programs

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

Formula

G.f. satisfies A(x) = ( 1 + x * A(x)^3 * (1 + A(x)^(1/2)) )^2.
G.f.: B(x)^2 where B(x) is the g.f. of A371700.
a(n) = 2 * Sum_{k=0..n} binomial(n,k) * binomial(6*n+k+2,n)/(6*n+k+2).
Showing 1-3 of 3 results.