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-2 of 2 results.

A349018 G.f. A(x) satisfies A(x) = 1/(1 - x/(1 - x*A(x)))^4.

Original entry on oeis.org

1, 4, 14, 60, 297, 1584, 8868, 51412, 305964, 1858308, 11472152, 71774548, 454080514, 2899959640, 18670920458, 121056521536, 789733186076, 5180002637472, 34141018474400, 225995779077324, 1501809350268648, 10015202238242356, 67003372168525774
Offset: 0

Views

Author

Seiichi Manyama, Nov 06 2021

Keywords

Crossrefs

Programs

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

Formula

If g.f. satisfies: A(x) = 1/(1 - x/(1 - x*A(x))^s)^t, then a(n) = Sum_{k=0..n} binomial(t*n-(t-1)*(k-1),k) * binomial(n+(s-1)*k-1,n-k)/(n-k+1).
a(n) ~ sqrt((1 - r*s)*(1 - r - r*s) / (2 - r*(2*s - 3))) / (sqrt(2*Pi) * n^(3/2) * r^(n+1)), where r = 0.13968480593491705709394976139265608086009606657813769... and s = 3.10146641162846907900664383717504887133026560522911567... are real roots of the system of equations (-1 + r*s)^4/(-1 + r + r*s)^4 = s, (4*r^2*(-1 + r*s)^3)/(-1 + r + r*s)^5 = 1. - Vaclav Kotesovec, Nov 15 2021
G.f.: A(x) = B(x)^4 where B(x) is the g.f. of A364723. - Seiichi Manyama, Dec 04 2024

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

Original entry on oeis.org

1, 1, 2, 9, 48, 276, 1687, 10750, 70597, 474478, 3247844, 22563904, 158693152, 1127661358, 8083795761, 58390722901, 424562043703, 3104994695198, 22825260066996, 168564068029385, 1249985066423749, 9303815610715531, 69483859839881494, 520527161650519576
Offset: 0

Views

Author

Seiichi Manyama, Aug 05 2023

Keywords

Crossrefs

Programs

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

Formula

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