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.

A379328 G.f. A(x) satisfies A(x) = sqrt( (1 + 2*x*A(x)^3) * (1 + 2*x*A(x)) ).

Original entry on oeis.org

1, 2, 8, 44, 272, 1808, 12616, 91136, 675712, 5112576, 39316480, 306402304, 2414543328, 19207303168, 154030314752, 1243912552448, 10107398806016, 82573989969920, 677862373390592, 5588755066388480, 46257005500080128, 384210240316375040, 3201482490107076608
Offset: 0

Views

Author

Seiichi Manyama, Dec 21 2024

Keywords

Crossrefs

Programs

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

Formula

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