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.

A369081 Expansion of (1/x) * Series_Reversion( x * (1+x^3/(1-x))^3 ).

Original entry on oeis.org

1, 0, 0, -3, -3, -3, 30, 72, 123, -313, -1533, -3888, 827, 28893, 107637, 116372, -420813, -2657823, -5660571, 1544334, 57009453, 190508467, 207797979, -955665852, -5323553041, -11293308333, 6516682923, 125714105729, 411566197974, 382778797437, -2328595584491
Offset: 0

Views

Author

Seiichi Manyama, Jan 12 2024

Keywords

Crossrefs

Programs

  • PARI
    my(N=40, x='x+O('x^N)); Vec(serreverse(x*(1+x^3/(1-x))^3)/x)
    
  • PARI
    a(n, s=3, t=3, u=-3) = sum(k=0, n\s, (-1)^k*binomial(t*(n+1)+k-1, k)*binomial((t+u+1)*(n+1)-(s-1)*k-2, n-s*k))/(n+1);

Formula

a(n) = (1/(n+1)) * Sum_{k=0..floor(n/3)} (-1)^k * binomial(3*n+k+2,k) * binomial(n-2*k-1,n-3*k).

A369230 Expansion of (1/x) * Series_Reversion( x * (1-x)^3 / (1-x+x^2)^3 ).

Original entry on oeis.org

1, 0, 3, 3, 24, 54, 283, 900, 4098, 15286, 66555, 268173, 1156951, 4852722, 21007605, 90167059, 393152058, 1712432070, 7524092134, 33112353060, 146518404963, 649861681966, 2893369443183, 12913307575722, 57800647230933, 259298148600504, 1165967972216967
Offset: 0

Views

Author

Seiichi Manyama, Jan 17 2024

Keywords

Crossrefs

Programs

  • PARI
    my(N=30, x='x+O('x^N)); Vec(serreverse(x*(1-x)^3/(1-x+x^2)^3)/x)
    
  • PARI
    a(n, s=2, t=3, u=3) = sum(k=0, n\s, binomial(t*(n+1), k)*binomial((u-t+1)*(n+1)-(s-1)*k-2, n-s*k))/(n+1);

Formula

a(n) = (1/(n+1)) * Sum_{k=0..floor(n/2)} binomial(3*n+3,k) * binomial(n-k-1,n-2*k).
Showing 1-2 of 2 results.