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.

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

Original entry on oeis.org

1, 4, 15, 94, 706, 5769, 49923, 449376, 4164228, 39459852, 380594767, 3724049805, 36876008673, 368835076813, 3720863181033, 37815675159285, 386818379566749, 3979362306753315, 41144521893563511, 427335033811660713, 4456402044181677264
Offset: 0

Views

Author

Seiichi Manyama, Oct 16 2023

Keywords

Crossrefs

Programs

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

Formula

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