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.

A371676 G.f. satisfies A(x) = 1 + x * A(x)^2 * (1 + A(x)^(1/2))^2.

Original entry on oeis.org

1, 4, 40, 524, 7824, 126228, 2143544, 37750812, 683194912, 12628104740, 237388091208, 4524456276524, 87228274533040, 1698091537435444, 33332913873239640, 659038408936005692, 13112372856351746112, 262338658739430857796, 5274545338183090647656
Offset: 0

Views

Author

Seiichi Manyama, Apr 02 2024

Keywords

Crossrefs

Programs

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

Formula

G.f. satisfies A(x) = ( 1 + x * A(x)^2 * (1 + A(x)^(1/2)) )^2.
a(n) = 2 * Sum_{k=0..n} binomial(n,k) * binomial(4*n+k+2,n)/(4*n+k+2).