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.

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

Original entry on oeis.org

1, 5, 35, 285, 2530, 23750, 231850, 2329850, 23940475, 250394375, 2656849375, 28529354375, 309445377750, 3385369628750, 37312228370000, 413913023212500, 4617886656665625, 51781448191328125, 583266654383859375, 6596645477096428125, 74881064169289121875
Offset: 0

Views

Author

Seiichi Manyama, Jan 15 2024

Keywords

Crossrefs

Programs

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

Formula

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

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

Original entry on oeis.org

1, 4, 21, 128, 851, 5984, 43759, 329396, 2535406, 19863592, 157874971, 1269833668, 10316765299, 84540929568, 697928139977, 5799156785376, 48461097907978, 407020852551016, 3434002483872566, 29090171931564848, 247333930963224287, 2109921586071433064
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^2))/x)
    
  • PARI
    a(n) = sum(k=0, n\2, (-1)^k*binomial(n+1, k)*binomial(4*n-4*k+4, n-2*k))/(n+1);

Formula

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