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-1 of 1 results.

A367031 G.f. satisfies A(x) = 1 + x*A(x)^2 - x^2*A(x)^4.

Original entry on oeis.org

1, 1, 1, -1, -10, -33, -55, 65, 842, 3230, 6137, -6631, -102166, -421705, -864225, 795615, 14526042, 63072042, 136736102, -102140350, -2256842380, -10210904245, -23195817445, 13298317815, 371005984450, 1740942920122, 4120912606657, -1666840127743
Offset: 0

Views

Author

Seiichi Manyama, Nov 02 2023

Keywords

Crossrefs

Programs

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

Formula

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