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.

A387211 Expansion of sqrt((1-2*x) / (1-6*x)^3).

Original entry on oeis.org

1, 8, 58, 400, 2678, 17584, 113892, 730272, 4646310, 29380912, 184867148, 1158418144, 7233806524, 45038743520, 279704675464, 1733203476288, 10718950211334, 66176597723184, 407931346057020, 2511127341708384, 15438601388617044, 94810212917983392, 581639541983344632
Offset: 0

Views

Author

Seiichi Manyama, Aug 22 2025

Keywords

Crossrefs

Programs

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

Formula

n*a(n) = 8*n*a(n-1) - 12*(n-1)*a(n-2) for n > 1.
a(n) = (1/2)^n * Sum_{k=0..n} 3^k * (2*k+1) * binomial(2*k,k) * binomial(2*(n-k),n-k)/(1-2*(n-k)).
a(n) = Sum_{k=0..n} 2^(n-k) * (2*k+1) * binomial(2*k,k) * binomial(n,n-k).
a(n) = Sum_{k=0..n} (-1)^k * 6^(n-k) * binomial(2*k,k)/(1-2*k) * binomial(n,n-k).

A387234 Expansion of sqrt((1-3*x) / (1-7*x)^5).

Original entry on oeis.org

1, 16, 187, 1908, 18015, 161700, 1400385, 11808480, 97533075, 792374720, 6350977457, 50334074972, 395137260609, 3076728075036, 23787996024015, 182783869074000, 1396834725138435, 10622886492055680, 80436297856668225, 606683298398776620, 4559675718517366461
Offset: 0

Views

Author

Seiichi Manyama, Aug 23 2025

Keywords

Crossrefs

Programs

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

Formula

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