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.

A378692 G.f. A(x) satisfies A(x) = 1 + x*A(x)^7/(1 - x*A(x)).

Original entry on oeis.org

1, 1, 8, 86, 1075, 14667, 211799, 3182454, 49243854, 779379652, 12558073022, 205312307834, 3397359326116, 56790504859929, 957574385205771, 16267419813629731, 278162968238908681, 4783813617177604232, 82691541747420586716, 1435895455224032519430, 25035634270828781060188
Offset: 0

Views

Author

Seiichi Manyama, Dec 04 2024

Keywords

Crossrefs

Programs

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

Formula

G.f. A(x) satisfies A(x) = 1/(1 - x*A(x)^6/(1 - x*A(x))).
If g.f. satisfies A(x) = ( 1 + x*A(x)^(t/r) / (1 - x*A(x)^(u/r))^s )^r, then a(n) = r * Sum_{k=0..n} binomial(t*k+u*(n-k)+r,k) * binomial(n+(s-1)*k-1,n-k)/(t*k+u*(n-k)+r).