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.

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

Original entry on oeis.org

1, 4, 29, 261, 2627, 28315, 319648, 3731037, 44663058, 545312504, 6764556591, 85015779095, 1080185111768, 13852183882612, 179058158369828, 2330621446075640, 30519758687849439, 401806204894374041, 5315243189757111099, 70613088335938995385, 941714812929017751855
Offset: 0

Views

Author

Seiichi Manyama, Jan 16 2024

Keywords

Crossrefs

Programs

  • Mathematica
    CoefficientList[InverseSeries[Series[x((1-x)^3-x),{x,0,21}],x]/x,x] (* Stefano Spezia, Mar 31 2025 *)
  • PARI
    my(N=30, x='x+O('x^N)); Vec(serreverse(x*((1-x)^3-x))/x)
    
  • PARI
    a(n) = sum(k=0, n, binomial(n+k, k)*binomial(4*n+2*k+2, n-k))/(n+1);

Formula

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

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

Original entry on oeis.org

1, 3, 12, 49, 179, 441, -860, -23634, -229246, -1705649, -10757370, -57800600, -246084657, -551185526, 3612960360, 66196180728, 641858169138, 4911870929096, 31792139997384, 172691510260794, 711428107177975, 1066704835555530, -18659356513414560
Offset: 0

Views

Author

Seiichi Manyama, Mar 23 2024

Keywords

Crossrefs

Programs

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

Formula

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