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.

A379246 G.f. A(x) satisfies A(x) = ( (1 + x*A(x)^3)/(1 - x*A(x)) )^3.

Original entry on oeis.org

1, 6, 90, 1838, 43362, 1111878, 30101786, 846703950, 24501770370, 724733787206, 21813611057562, 665947742487342, 20571682188676450, 641823879285627654, 20195381326042866138, 640146274715559742670, 20421757641058980395010, 655181707585675667750790, 21125606434257067959841242
Offset: 0

Views

Author

Seiichi Manyama, Dec 18 2024

Keywords

Crossrefs

Programs

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

Formula

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