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.

Showing 1-1 of 1 results.

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

Original entry on oeis.org

1, 2, 5, 22, 94, 452, 2253, 11640, 61732, 333924, 1836052, 10229434, 57628078, 327711260, 1878658490, 10845298128, 62993496588, 367874945560, 2158717741928, 12722258713956, 75269561054412, 446891212180568, 2661788871400197, 15900644226590952, 95240143776976144
Offset: 0

Views

Author

Seiichi Manyama, Mar 29 2024

Keywords

Crossrefs

Programs

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

Formula

a(n) = Sum_{k=0..n} binomial(4*(n-k)+2,k) * binomial(2*k,n-k)/(2*(n-k)+1).
G.f.: A(x) = B(x)^2 where B(x) is the g.f. of A137955.
Showing 1-1 of 1 results.