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.

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

Original entry on oeis.org

1, 1, -2, -2, 15, -4, -122, 204, 903, -3374, -4635, 43539, -13233, -475123, 873392, 4244591, -16906773, -24952174, 244162840, -74520792, -2901715074, 5483226036, 27740164293, -112969486284, -172903931727, 1714556657881, -513739179725, -21235809823325
Offset: 0

Views

Author

Seiichi Manyama, Aug 21 2023

Keywords

Crossrefs

Programs

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

Formula

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