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.

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

Original entry on oeis.org

1, 3, 12, 46, 174, 654, 2451, 9177, 34368, 128826, 483531, 1817673, 6844294, 25815660, 97539435, 369154485, 1399419360, 5313440610, 20205330660, 76946898744, 293443125804, 1120565939780, 4284550682478, 16402204879386, 62864294076480, 241205747620740
Offset: 0

Views

Author

Seiichi Manyama, Mar 31 2024

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec((1+x*((1-sqrt(1-4*x))/(2*x))^3)^3)
    
  • PARI
    a(n, r=3, s=3/2, t=3/2, u=0) = 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.: B(x)^3 where B(x) is the g.f. of A071724.
a(n) = 3 * Sum_{k=0..n} binomial(3*k/2+3,k) * binomial(n+k/2-1,n-k)/(3*k/2+3).

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

Original entry on oeis.org

1, 2, 9, 40, 184, 872, 4232, 20936, 105208, 535624, 2757000, 14324456, 75028152, 395750568, 2100380424, 11208429960, 60103977976, 323708642952, 1750294676744, 9497584905128, 51703651336888, 282302043458536, 1545558070957960, 8482843567140680
Offset: 0

Views

Author

Seiichi Manyama, Mar 31 2024

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec((1+x*((1-x-sqrt(1-6*x+x^2))/(2*x))^2)^2)
    
  • PARI
    a(n, r=2, s=2, t=2, u=0) = 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.: B(x)^2 where B(x) is the g.f. of A006319.
a(n) = 2 * Sum_{k=0..n} binomial(2*k+2,k) * binomial(n+k-1,n-k)/(2*k+2).
Showing 1-2 of 2 results.