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

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

Original entry on oeis.org

1, 1, 7, 49, 378, 3136, 27363, 247597, 2302511, 21872361, 211336755, 2070577285, 20522662832, 205411356794, 2073258075175, 21078157565623, 215658366319375, 2218853063356937, 22942886758494094, 238284942878492146, 2484736162773443446
Offset: 0

Views

Author

Seiichi Manyama, Oct 09 2023

Keywords

Crossrefs

Partial sums give A366401.

Programs

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

Formula

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

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

Original entry on oeis.org

1, 1, -3, 9, -37, 171, -849, 4421, -23820, 131676, -742616, 4255944, -24714276, 145103426, -859920585, 5137093695, -30902681230, 187034086170, -1138106903928, 6958662440416, -42729903714420, 263400623938140, -1629378251621535, 10111374706286895
Offset: 0

Views

Author

Seiichi Manyama, Oct 09 2023

Keywords

Crossrefs

Partial sums give A366404.

Programs

  • Mathematica
    Table[(-1)^(n-1) * Sum[Binomial[5*k/2 - 1, k]*Binomial[3*k/2, n - k]/(5*k/2 - 1), {k, 0, n}], {n, 0, 30}] (* Vaclav Kotesovec, Oct 10 2023 *)
  • PARI
    a(n) = (-1)^(n-1)*sum(k=0, n, binomial(5*k/2-1, k)*binomial(3*k/2, n-k)/(5*k/2-1));

Formula

a(n) = (-1)^(n-1) * Sum_{k=0..n} binomial(5*k/2-1,k) * binomial(3*k/2,n-k) / (5*k/2-1).
a(n) ~ -(-1)^n * sqrt(4*10^(1/3) + 10^(2/3) - 5) * 3^(n + 1/2) * 5^(n-1) / (sqrt(Pi) * (2 + 10^(1/3)) * n^(3/2) * (4*10^(1/3) + 10^(2/3) - 11)^n). - Vaclav Kotesovec, Oct 10 2023

A366434 G.f. A(x) satisfies A(x) = 1 + x * ((1 - x) / A(x))^2.

Original entry on oeis.org

1, 1, -4, 16, -84, 496, -3140, 20832, -142932, 1005856, -7220100, 52657392, -389088084, 2906551440, -21914464708, 166548194240, -1274531623764, 9812792232768, -75955668337412, 590742300208848, -4614140648464980, 36178872976542768, -284664427193774916
Offset: 0

Views

Author

Seiichi Manyama, Oct 09 2023

Keywords

Crossrefs

Partial sums give A366364.

Programs

  • PARI
    a(n) = (-1)^(n-1)*sum(k=0, n, binomial(3*k-1, k)*binomial(2*k, n-k)/(3*k-1));

Formula

a(n) = (-1)^(n-1) * Sum_{k=0..n} binomial(3*k-1,k) * binomial(2*k,n-k) / (3*k-1).

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

Original entry on oeis.org

1, 1, -5, 25, -160, 1150, -8851, 71345, -594530, 5080300, -44272760, 391961328, -3515490820, 31874449160, -291676084205, 2690284784605, -24985250240043, 233447554879855, -2192862233710505, 20696454624488125, -196168344717398010, 1866499116495323946
Offset: 0

Views

Author

Seiichi Manyama, Oct 09 2023

Keywords

Crossrefs

Partial sums give A366405.

Programs

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

Formula

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

A366436 G.f. A(x) satisfies A(x) = 1 + x * ((1 - x) / A(x))^3.

Original entry on oeis.org

1, 1, -6, 36, -272, 2304, -20880, 198080, -1942080, 19521792, -200101376, 2083538688, -21976624128, 234321952768, -2521446660096, 27347192389632, -298643542716416, 3280990949720064, -36238161907974144, 402146115064233984, -4481721683926056960
Offset: 0

Views

Author

Seiichi Manyama, Oct 09 2023

Keywords

Crossrefs

Partial sums give A366365.

Programs

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

Formula

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

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

Original entry on oeis.org

1, 1, -7, 49, -427, 4165, -43435, 473977, -5344333, 61772179, -727993301, 8714701219, -105672771225, 1295237037815, -16021641194545, 199747074505773, -2507395464414008, 31664298046926328, -401994771266030880, 5127701624204157600, -65684716411944207144
Offset: 0

Views

Author

Seiichi Manyama, Oct 09 2023

Keywords

Crossrefs

Partial sums give A366406.

Programs

  • PARI
    a(n) = (-1)^(n-1)*sum(k=0, n, binomial(9*k/2-1, k)*binomial(7*k/2, n-k)/(9*k/2-1));

Formula

a(n) = (-1)^(n-1) * Sum_{k=0..n} binomial(9*k/2-1,k) * binomial(7*k/2,n-k) / (9*k/2-1).

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

Original entry on oeis.org

1, 1, -4, 16, -74, 386, -2180, 12974, -80087, 507887, -3288564, 21649068, -144458484, 974838450, -6641303895, 45615642021, -315530731215, 2196107692119, -15368596890978, 108073850591598, -763293549312084, 5412015893523096, -38508964818580799
Offset: 0

Views

Author

Seiichi Manyama, Oct 11 2023

Keywords

Crossrefs

Programs

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

Formula

G.f.: A(x) = 1/B(-x) where B(x) is the g.f. of A366431.
a(n) = (-1)^(n-1) * Sum_{k=0..n} binomial(n+3*k/2-1,n-k) * binomial(5*k/2-1,k) / (5*k/2-1).
Showing 1-7 of 7 results.