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.

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

Original entry on oeis.org

1, 1, 5, 34, 268, 2299, 20838, 196326, 1903524, 18868861, 190356231, 1948055058, 20173907384, 211020478270, 2226243632838, 23660868061422, 253099278807684, 2722819049879436, 29439894433161189, 319749417998303470, 3486914150183526920
Offset: 0

Views

Author

Seiichi Manyama, Aug 25 2023

Keywords

Crossrefs

Programs

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

Formula

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