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.

A387237 Expansion of 1/((1-x) * (1-5*x))^(5/2).

Original entry on oeis.org

1, 15, 145, 1155, 8260, 55188, 351960, 2170080, 13042095, 76827465, 445335891, 2547479025, 14412134100, 80773641900, 449065521300, 2479190589180, 13603361708775, 74238475926825, 403197150223175, 2180369322394725, 11744998515662720, 63044308615576200, 337323759106291100
Offset: 0

Views

Author

Seiichi Manyama, Aug 23 2025

Keywords

Crossrefs

Programs

  • Magma
    R := PowerSeriesRing(Rationals(), 34); f := 1/((1-x) * (1-5*x))^(5/2); coeffs := [ Coefficient(f, n) : n in [0..33] ]; coeffs; // Vincenzo Librandi, Aug 24 2025
  • Mathematica
    CoefficientList[Series[1/((1-x)*(1-5*x))^(5/2),{x,0,33}],x] (* Vincenzo Librandi, Aug 24 2025 *)
  • PARI
    my(N=30, x='x+O('x^N)); Vec(1/((1-x)*(1-5*x))^(5/2))
    

Formula

n*a(n) = (6*n+9)*a(n-1) - 5*(n+3)*a(n-2) for n > 1.
a(n) = (-1)^n * Sum_{k=0..n} 5^k * binomial(-5/2,k) * binomial(-5/2,n-k).
a(n) = Sum_{k=0..n} (-4)^k * binomial(-5/2,k) * binomial(n+4,n-k).
a(n) = Sum_{k=0..n} 4^k * 5^(n-k) * binomial(-5/2,k) * binomial(n+4,n-k).
a(n) = (binomial(n+4,2)/6) * Sum_{k=0..floor(n/2)} 3^(n-2*k) * binomial(n+2,n-2*k) * binomial(2*k+2,k) = (binomial(n+4,2)/6) * A026377(n+2).
a(n) = (-1)^n * Sum_{k=0..n} 6^k * (5/6)^(n-k) * binomial(-5/2,k) * binomial(k,n-k).

A387284 Expansion of 1/((1-3*x) * (1-7*x))^(7/2).

Original entry on oeis.org

1, 35, 714, 11130, 147126, 1739430, 18977574, 194933310, 1910889981, 18049106075, 165420791536, 1478846110560, 12948121954404, 111381159472380, 943685046652536, 7890986412386280, 65229211294855839, 533768263527907485, 4328710275989203566, 34823868658927020750
Offset: 0

Views

Author

Seiichi Manyama, Aug 24 2025

Keywords

Crossrefs

Programs

  • Magma
    R := PowerSeriesRing(Rationals(), 34); f := 1/((1-3*x) * (1-7*x))^(7/2); coeffs := [ Coefficient(f, n) : n in [0..33] ]; coeffs; // Vincenzo Librandi, Aug 26 2025
  • Mathematica
    CoefficientList[Series[1/((1-3x)*(1-7*x))^(7/2),{x,0,33}],x] (* Vincenzo Librandi, Aug 26 2025 *)
  • PARI
    my(N=20, x='x+O('x^N)); Vec(1/((1-3*x)*(1-7*x))^(7/2))
    

Formula

n*a(n) = (10*n+25)*a(n-1) - 21*(n+5)*a(n-2) for n > 1.
a(n) = (-1)^n * Sum_{k=0..n} 7^k * 3^(n-k) * binomial(-7/2,k) * binomial(-7/2,n-k).
a(n) = Sum_{k=0..n} (-4)^k * 3^(n-k) * binomial(-7/2,k) * binomial(n+6,n-k).
a(n) = Sum_{k=0..n} 4^k * 7^(n-k) * binomial(-7/2,k) * binomial(n+6,n-k).
a(n) = (binomial(n+6,3)/20) * A387276(n).
a(n) = (-1)^n * Sum_{k=0..n} 10^k * (21/10)^(n-k) * binomial(-7/2,k) * binomial(k,n-k).
Showing 1-2 of 2 results.