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.

A366364 G.f. satisfies A(x) = (1 + x/A(x)^2)/(1 - x).

Original entry on oeis.org

1, 2, -2, 14, -70, 426, -2714, 18118, -124814, 881042, -6339058, 46318334, -342769750, 2563781690, -19350683018, 147197511222, -1127334112542, 8685458120226, -67270210217186, 523472089991662, -4090668558473318, 32088204418069450, -252576222775705466
Offset: 0

Views

Author

Seiichi Manyama, Oct 08 2023

Keywords

Crossrefs

Programs

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

Formula

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