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

A349361 G.f. A(x) satisfies: A(x) = 1 + x * A(x)^5 / (1 + x).

Original entry on oeis.org

1, 1, 4, 26, 194, 1581, 13625, 122120, 1126780, 10631460, 102104845, 994855179, 9809872626, 97710157154, 981636609906, 9935473707279, 101214412755647, 1036991125300748, 10678412226507032, 110459290208905008, 1147261657267290037
Offset: 0

Views

Author

Ilya Gutkovskiy, Nov 15 2021

Keywords

Crossrefs

Programs

  • Maple
    a:= n-> coeff(series(RootOf(1+x*A^5/(1+x)-A, A), x, n+1), x, n):
    seq(a(n), n=0..20);  # Alois P. Heinz, Nov 15 2021
  • Mathematica
    nmax = 20; A[] = 0; Do[A[x] = 1 + x A[x]^5/(1 + x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
    Table[Sum[(-1)^(n - k) Binomial[n - 1, k - 1] Binomial[5 k, k]/(4 k + 1), {k, 0, n}], {n, 0, 20}]

Formula

a(n) = Sum_{k=0..n} (-1)^(n-k) * binomial(n-1,k-1) * binomial(5*k,k) / (4*k+1).
a(n) = (-1)^(n+1)*F([6/5, 7/5, 8/5, 9/5, 1-n], [3/2, 7/4, 2, 9/4], 5^5/2^8), where F is the generalized hypergeometric function. - Stefano Spezia, Nov 15 2021
From Vaclav Kotesovec, Nov 17 2021: (Start)
a(n) ~ 2869^(n + 1/2) / (25 * sqrt(Pi) * n^(3/2) * 2^(8*n + 7/2)).
Recurrence: 8*n*(2*n - 1)*(4*n - 1)*(4*n + 1)*a(n) = 3*(615*n^4 - 718*n^3 - 275*n^2 + 618*n - 200)*a(n-1) + 4*(n-2)*(2485*n^3 - 6879*n^2 + 6524*n - 2040)*a(n-2) + 2*(n-3)*(n-2)*(8095*n^2 - 23517*n + 18092)*a(n-3) + 12*(n-4)*(n-3)*(n-2)*(935*n - 1838)*a(n-4) + 2869*(n-5)*(n-4)*(n-3)*(n-2)*a(n-5). (End)

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

Original entry on oeis.org

1, 2, 8, 59, 565, 6046, 68878, 818276, 10021910, 125629220, 1603943486, 20783993414, 272641113110, 3613484662965, 48313969712685, 650888627139801, 8826840286257595, 120398870546499685, 1650711840886884265, 22735860619151166130, 314441081323870331656
Offset: 0

Views

Author

Ilya Gutkovskiy, Jul 28 2021

Keywords

Comments

Partial sums of A002295.
In general, for m > 1, Sum_{k=0..n} binomial(m*k,k) / ((m-1)*k + 1) ~ m^(m*(n+1) + 1/2) / (sqrt(2*Pi) * (m^m - (m-1)^(m-1)) * n^(3/2) * (m-1)^((m-1)*n + 3/2)). - Vaclav Kotesovec, Jul 28 2021

Crossrefs

Programs

  • Mathematica
    Table[Sum[Binomial[6 k, k]/(5 k + 1), {k, 0, n}], {n, 0, 20}]
    nmax = 20; A[] = 0; Do[A[x] = 1/(1 - x) + x (1 - x)^5 A[x]^6 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
  • PARI
    a(n) = sum(k=0, n, binomial(6*k, k)/(5*k+1)); \\ Michel Marcus, Jul 28 2021

Formula

G.f. A(x) satisfies: A(x) = 1 / (1 - x) + x * (1 - x)^5 * A(x)^6.
a(n) ~ 2^(6*n + 6) * 3^(6*n + 13/2) / (43531 * sqrt(Pi) * n^(3/2) * 5^(5*n + 3/2)). - Vaclav Kotesovec, Jul 28 2021

A346671 a(n) = Sum_{k=0..n} binomial(7*k,k) / (6*k + 1).

Original entry on oeis.org

1, 2, 9, 79, 898, 11370, 153148, 2150836, 31140511, 461462144, 6964815000, 106691488130, 1654539334220, 25923944408960, 409770113121064, 6526344613981944, 104632592920840659, 1687270854882480906, 27348675382672733281, 445328790513987869681, 7281393330439106226281
Offset: 0

Views

Author

Ilya Gutkovskiy, Jul 28 2021

Keywords

Comments

Partial sums of A002296.

Crossrefs

Programs

  • Mathematica
    Table[Sum[Binomial[7 k, k]/(6 k + 1), {k, 0, n}], {n, 0, 20}]
    nmax = 20; A[] = 0; Do[A[x] = 1/(1 - x) + x (1 - x)^6 A[x]^7 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
  • PARI
    a(n) = sum(k=0, n, binomial(7*k, k)/(6*k+1)); \\ Michel Marcus, Jul 28 2021

Formula

G.f. A(x) satisfies: A(x) = 1 / (1 - x) + x * (1 - x)^6 * A(x)^7.
a(n) ~ 7^(7*n + 15/2) / (776887 * sqrt(Pi) * n^(3/2) * 2^(6*n + 2) * 3^(6*n + 3/2)). - Vaclav Kotesovec, Jul 30 2021

A346672 a(n) = Sum_{k=0..n} binomial(8*k,k) / (7*k + 1).

Original entry on oeis.org

1, 2, 10, 102, 1342, 19620, 305004, 4943352, 82595376, 1412486081, 24602515801, 434935956337, 7783978950825, 140752989839105, 2567623696254905, 47195200645619009, 873239636055018809, 16251426606785706209, 304007720310330530081, 5713101394865420846381
Offset: 0

Views

Author

Ilya Gutkovskiy, Jul 28 2021

Keywords

Comments

Partial sums of A007556.
In general, for m > 1, Sum_{k=0..n} binomial(m*k,k) / ((m-1)*k + 1) ~ m^(m*(n+1) + 1/2) / (sqrt(2*Pi) * (m^m - (m-1)^(m-1)) * n^(3/2) * (m-1)^((m-1)*n + 3/2)). - Vaclav Kotesovec, Jul 30 2021

Crossrefs

Programs

  • Mathematica
    Table[Sum[Binomial[8 k, k]/(7 k + 1), {k, 0, n}], {n, 0, 19}]
    nmax = 19; A[] = 0; Do[A[x] = 1/(1 - x) + x (1 - x)^7 A[x]^8 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
  • PARI
    a(n) = sum(k=0, n, binomial(8*k, k)/(7*k+1)); \\ Michel Marcus, Jul 28 2021

Formula

G.f. A(x) satisfies: A(x) = 1 / (1 - x) + x * (1 - x)^7 * A(x)^8.
a(n) ~ 2^(24*n + 25) / (15953673 * sqrt(Pi) * n^(3/2) * 7^(7*n + 3/2)). - Vaclav Kotesovec, Jul 30 2021

A345367 a(n) = Sum_{k=0..n} binomial(4*k,k) / (3*k + 1).

Original entry on oeis.org

1, 2, 6, 28, 168, 1137, 8221, 62041, 482773, 3845033, 31188921, 256757719, 2139691083, 18015030073, 153008796673, 1309402039993, 11279339531413, 97724562251137, 851035285261745, 7445189624293545, 65401191955640665, 576639234410182210, 5101317352349364430
Offset: 0

Views

Author

Ilya Gutkovskiy, Jul 28 2021

Keywords

Comments

Partial sums of A002293.

Crossrefs

Programs

  • Mathematica
    Table[Sum[Binomial[4 k, k]/(3 k + 1), {k, 0, n}], {n, 0, 22}]
    nmax = 22; A[] = 0; Do[A[x] = 1/(1 - x) + x (1 - x)^3 A[x]^4 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
  • PARI
    a(n) = sum(k=0, n, binomial(4*k, k)/(3*k+1)); \\ Michel Marcus, Jul 28 2021

Formula

G.f. A(x) satisfies: A(x) = 1 / (1 - x) + x * (1 - x)^3 * A(x)^4.
a(n) ~ 2^(8*n + 17/2) / (229 * sqrt(Pi) * n^(3/2) * 3^(3*n + 3/2)). - Vaclav Kotesovec, Jul 28 2021
D-finite with recurrence 3*n*(3*n-1)*(3*n+1)*a(n) +(-283*n^3+384*n^2-173*n+24)*a(n-1) +8*(4*n-3)*(2*n-1)*(4*n-1)*a(n-2)=0. - R. J. Mathar, Aug 05 2021

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

Original entry on oeis.org

1, 0, 5, 30, 255, 2275, 21476, 210404, 2120041, 21830314, 228713056, 2430255074, 26128088701, 283703487059, 3106713300821, 34270543858459, 380471319687826, 4247891403168599, 47665096853113576, 537244509843680309, 6079834137116933061, 69054467456964456599
Offset: 0

Views

Author

Ilya Gutkovskiy, Jul 29 2021

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Sum[(-1)^(n - k) Binomial[5 k, k]/(4 k + 1), {k, 0, n}], {n, 0, 21}]
    nmax = 21; A[] = 0; Do[A[x] = 1/(1 + x) + x (1 + x)^4 A[x]^5 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
  • PARI
    a(n) = sum(k=0, n, (-1)^(n-k)*binomial(5*k, k)/(4*k + 1)); \\ Michel Marcus, Jul 29 2021

Formula

G.f. A(x) satisfies: A(x) = 1 / (1 + x) + x * (1 + x)^4 * A(x)^5.
a(n) ~ 5^(5*n + 11/2) / (3381 * sqrt(Pi) * n^(3/2) * 2^(8*n + 7/2)). - Vaclav Kotesovec, Jul 30 2021
Showing 1-6 of 6 results.