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.

A365223 G.f. satisfies A(x) = 1 + x*A(x)^3 / (1 + x*A(x)^4).

Original entry on oeis.org

1, 1, 2, 3, -3, -50, -244, -714, -530, 8522, 63548, 259473, 535647, -1321437, -19094684, -103022071, -322370363, -142186810, 5537336460, 41081448638, 170484444654, 332739198585, -1241023311708, -15677607031084, -83737193010368, -255608722098225, -12706843586158
Offset: 0

Views

Author

Seiichi Manyama, Aug 27 2023

Keywords

Crossrefs

Programs

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

Formula

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