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.

Previous Showing 11-15 of 15 results.

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

Original entry on oeis.org

1, 2, 5, 25, 257, 4361, 104425, 3241316, 123865313, 5628753361, 296671566941, 17798975341467, 1197924420178381, 89394126594968755, 7326377073291002147, 654215578855903951141, 63225054646397348577601, 6575059243843086616460321, 732138834180570978286488133
Offset: 0

Views

Author

Vaclav Kotesovec, Nov 23 2024

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Sum[Binomial[n, k] Binomial[n*k, k]/((n-1)*k + 1), {k, 0, n}], {n, 0, 20}]

Formula

a(n) ~ exp(n + exp(-1) - 1/2) * n^(n - 5/2) / sqrt(2*Pi).

A349582 G.f. A(x) satisfies: A(x) = 1 / (1 - 2*x) + x * (1 - 2*x)^3 * A(x)^5.

Original entry on oeis.org

1, 3, 13, 85, 733, 7292, 78267, 880250, 10226237, 121713373, 1476272394, 18180126906, 226704989103, 2856790765238, 36321840773980, 465362291912648, 6002272018481901, 77873186277771107, 1015583616140910999, 13306207249869273003, 175064043975233981626
Offset: 0

Views

Author

Ilya Gutkovskiy, Nov 22 2021

Keywords

Comments

Second binomial transform of A002294.

Crossrefs

Programs

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

Formula

a(n) = Sum_{k=0..n} binomial(n,k) * binomial(5*k,k) * 2^(n-k) / (4*k+1).
a(n) = 2^n*F([1/5, 2/5, 3/5, 4/5, -n], [1/2, 3/4, 1, 5/4], -5^5/2^9), where F is the generalized hypergeometric function. - Stefano Spezia, Nov 22 2021
a(n) ~ 3637^(n + 3/2) / (78125 * sqrt(Pi) * n^(3/2) * 2^(8*n + 7/2)). - Vaclav Kotesovec, Nov 26 2021

A381988 E.g.f. A(x) satisfies A(x) = exp(x) * B(x*A(x)), where B(x) = 1 + x*B(x)^4 is the g.f. of A002293.

Original entry on oeis.org

1, 2, 15, 313, 10773, 510981, 30876463, 2267990159, 196204786025, 19539828320905, 2201822913234771, 276969947671828995, 38473403439454795837, 5849221857618942870029, 966078641687956464576119, 172251173569831561500070711, 32975613823747758363130520529, 6746227557293225645352382744593
Offset: 0

Views

Author

Seiichi Manyama, Mar 12 2025

Keywords

Crossrefs

Programs

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

Formula

Let F(x) be the e.g.f. of A377526. F(x) = B(x*A(x)) = exp( 1/4 * Sum_{k>=1} binomial(4*k,k) * (x*A(x))^k/k ).
a(n) = n! * Sum_{k=0..n} (k+1)^(n-k) * A002294(k)/(n-k)!.

A381940 G.f. A(x) satisfies A(x) = (1 + x) * B(x*A(x)), where B(x) is the g.f. of A002293.

Original entry on oeis.org

1, 2, 7, 51, 440, 4170, 41921, 438972, 4736281, 52286520, 587774685, 6705201456, 77426676892, 903251324476, 10629495065550, 126032922655030, 1504194199010435, 18056321542477095, 217859030049153565, 2640609137351540510, 32137554969392230950, 392580762083089376630
Offset: 0

Views

Author

Seiichi Manyama, Mar 10 2025

Keywords

Crossrefs

Programs

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

Formula

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

A369688 G.f. satisfies A(x) = 1 + x*A(x) + x^2*(1-x)^3*A(x)^5.

Original entry on oeis.org

1, 1, 2, 4, 12, 36, 126, 442, 1644, 6172, 23801, 92731, 366688, 1462852, 5891808, 23898576, 97600556, 400844140, 1654818768, 6862550360, 28576414261, 119434041561, 500849380048, 2106740001442, 8886482895068, 37580609774876, 159303913630686
Offset: 0

Views

Author

Seiichi Manyama, Jan 28 2024

Keywords

Crossrefs

Programs

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

Formula

a(n) = Sum_{k=0..floor(n/2)} binomial(n,2*k) * binomial(5*k,k) / (4*k+1).
Previous Showing 11-15 of 15 results.