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.

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

Original entry on oeis.org

1, 2, 5, 15, 50, 177, 652, 2473, 9594, 37892, 151846, 615859, 2523217, 10427471, 43415259, 181941198, 766841846, 3248517320, 13823977350, 59067577266, 253315964424, 1089998388418, 4704475230340, 20361365646315, 88351705071583, 384280788724692, 1675063399090659
Offset: 0

Views

Author

Seiichi Manyama, Jan 16 2024

Keywords

Crossrefs

Programs

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

Formula

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