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.

A367030 G.f. satisfies A(x) = 1 + x*A(x) - x^2*A(x)^5.

Original entry on oeis.org

1, 1, 0, -5, -15, 0, 170, 619, 69, -8351, -33601, -8446, 480679, 2078534, 830739, -30221481, -138791261, -76306831, 2009474129, 9742939809, 6811893809, -138835809721, -708398431831, -599833654686, 9861055840019, 52859680413599, 52446605719469
Offset: 0

Views

Author

Seiichi Manyama, Nov 02 2023

Keywords

Crossrefs

Programs

  • PARI
    a(n) = sum(k=0, n\2, (-1)^k*binomial(n+3*k, k)*binomial(n+2*k, n-2*k)/(4*k+1));

Formula

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