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.

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

Original entry on oeis.org

1, 2, 12, 84, 664, 5624, 49928, 458480, 4318896, 41503168, 405267840, 4009684608, 40109536992, 404977089792, 4121810315584, 42243756499328, 435593319238144, 4515817056202496, 47040399766319360, 492117122988795392, 5168258741713256960
Offset: 0

Views

Author

Seiichi Manyama, Apr 17 2024

Keywords

Crossrefs

Programs

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

Formula

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