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.

A381785 G.f. A(x) satisfies A(x) = (1 + x) * C(x*A(x)^2), where C(x) is the g.f. of A000108.

Original entry on oeis.org

1, 2, 7, 45, 335, 2731, 23573, 211741, 1958571, 18529392, 178459000, 1743868792, 17246702932, 172302244669, 1736302280083, 17627794322287, 180133941044517, 1851310247393202, 19123511540724822, 198437973436950204, 2067524004169000212, 21620908821378509071
Offset: 0

Views

Author

Seiichi Manyama, Mar 07 2025

Keywords

Crossrefs

Programs

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

Formula

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