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.

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

Original entry on oeis.org

1, 1, 2, 5, 13, 35, 96, 264, 719, 1914, 4888, 11583, 23540, 29907, -57120, -695742, -3938275, -18266657, -76983710, -306116660, -1168987469, -4327878214, -15617536020, -55097816085, -190320077663, -643865817117, -2131713980560, -6893257768141
Offset: 0

Views

Author

Seiichi Manyama, Mar 03 2024

Keywords

Crossrefs

Programs

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

Formula

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