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.

A364592 G.f. satisfies A(x) = 1/(1-x) + x*(1-x)*A(x)^4.

Original entry on oeis.org

1, 2, 8, 49, 365, 3001, 26193, 238119, 2230151, 21368167, 208459419, 2063563791, 20675793627, 209277092776, 2136720896514, 21979879393677, 227582114799201, 2369983696546858, 24806423607475896, 260829829404493787, 2753744691645428399
Offset: 0

Views

Author

Seiichi Manyama, Jul 29 2023

Keywords

Crossrefs

Programs

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

Formula

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