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.

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

Original entry on oeis.org

1, 1, 5, 33, 252, 2091, 18319, 166750, 1561599, 14948572, 145615404, 1438752770, 14384289530, 145248707646, 1479212551278, 15175516654760, 156691764630780, 1627069871618145, 16980373299730925, 178006989972532900, 1873607777794186000
Offset: 0

Views

Author

Seiichi Manyama, Aug 25 2023

Keywords

Crossrefs

Programs

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

Formula

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