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.

A364744 G.f. satisfies A(x) = 1 / (1 - x*(1 + x*A(x))^5).

Original entry on oeis.org

1, 1, 6, 26, 131, 706, 3932, 22618, 133099, 797545, 4850296, 29859028, 185712831, 1165227025, 7366475715, 46877977451, 300049605259, 1930395961235, 12476394685445, 80968876247330, 527424073700966, 3447190219684125, 22599794010813360
Offset: 0

Views

Author

Seiichi Manyama, Aug 05 2023

Keywords

Crossrefs

Programs

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

Formula

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