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.

A378426 Expansion of (1/x) * Series_Reversion( x / (1 + x + x^2 * (1 + x)^2) ).

Original entry on oeis.org

1, 1, 2, 6, 18, 56, 184, 624, 2161, 7621, 27283, 98869, 361967, 1336843, 4974763, 18634683, 70207751, 265874119, 1011475368, 3863846328, 14814818017, 56994831109, 219941836172, 851138940402, 3302281633591, 12842844277471, 50056915575566, 195503017533502
Offset: 0

Views

Author

Seiichi Manyama, Nov 25 2024

Keywords

Crossrefs

Programs

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

Formula

G.f.: exp( Sum_{k>=1} A378405(k) * x^k/k ).
a(n) = (1/(n+1)) * [x^n] (1 + x + x^2 * (1 + x)^2)^(n+1).
a(n) = (1/(n+1)) * Sum_{k=0..floor(n/2)} binomial(n+1,k) * binomial(n+k+1,n-2*k).

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

Original entry on oeis.org

1, 1, 1, 2, 8, 29, 88, 253, 775, 2575, 8797, 29833, 100635, 342408, 1181727, 4120223, 14435969, 50738813, 179038408, 634696939, 2259677734, 8072923814, 28924907573, 103915759961, 374302237154, 1351541722226, 4891132336481, 17736792240766, 64440831300682
Offset: 0

Views

Author

Seiichi Manyama, Nov 25 2024

Keywords

Crossrefs

Programs

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

Formula

G.f.: exp( Sum_{k>=1} A378407(k) * x^k/k ).
a(n) = (1/(n+1)) * [x^n] (1 + x + x^3 * (1 + x)^3)^(n+1).
a(n) = (1/(n+1)) * Sum_{k=0..floor(n/3)} binomial(n+1,k) * binomial(n+2*k+1,n-3*k).
Showing 1-2 of 2 results.