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.

A368936 Expansion of (1/x) * Series_Reversion( x * (1-x) * (1-x+x^4) ).

Original entry on oeis.org

1, 2, 7, 30, 142, 715, 3756, 20349, 112865, 637681, 3657075, 21233199, 124562708, 737197980, 4396176336, 26389742175, 159336837840, 967007923321, 5895699043010, 36093405644877, 221785663880176, 1367420967329725, 8456765007380190, 52447676008911675
Offset: 0

Views

Author

Seiichi Manyama, Jan 10 2024

Keywords

Crossrefs

Programs

  • PARI
    a(n) = sum(k=0, n\4, (-1)^k*binomial(n+k, k)*binomial(3*n-3*k+1, n-4*k))/(n+1);
    
  • PARI
    my(x='x+O('x^30)); Vec(serreverse(x*(1-x)*(1-x+x^4))/x) \\ Michel Marcus, Jan 10 2024

Formula

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

A368937 Expansion of (1/x) * Series_Reversion( x * (1-x) * (1-x+x^5) ).

Original entry on oeis.org

1, 2, 7, 30, 143, 727, 3861, 21165, 118845, 680064, 3951291, 23247874, 138229486, 829292780, 5013767772, 30516496017, 186837457296, 1149894814718, 7110026033305, 44146396259805, 275139524189497, 1720647439298395, 10793938343564655, 67905034046934225
Offset: 0

Views

Author

Seiichi Manyama, Jan 10 2024

Keywords

Crossrefs

Programs

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

Formula

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