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.

A385716 Expansion of 1/((1-x) * (1-13*x))^(3/2).

Original entry on oeis.org

1, 21, 348, 5320, 78135, 1120287, 15805972, 220445316, 3047961735, 41857891075, 571725145992, 7774356136092, 105324231178621, 1422411298153125, 19157947746089520, 257427540725705056, 3451990965984505251, 46205867184493459023, 617482101788090727220, 8239952016851603641320
Offset: 0

Views

Author

Seiichi Manyama, Aug 19 2025

Keywords

Crossrefs

Programs

  • Mathematica
    Module[{x}, CoefficientList[Series[1/((1-x)*(1-13*x))^(3/2), {x, 0, 25}], x]] (* Paolo Xausa, Aug 25 2025 *)
  • PARI
    my(N=20, x='x+O('x^N)); Vec(1/((1-x)*(1-13*x))^(3/2))

Formula

n*a(n) = (14*n+7)*a(n-1) - 13*(n+1)*a(n-2) for n > 1.
a(n) = (1/4)^n * Sum_{k=0..n} 13^k * (2*k+1) * (2*(n-k)+1) * binomial(2*k,k) * binomial(2*(n-k),n-k).
a(n) = Sum_{k=0..n} 3^k * (2*k+1) * binomial(2*k,k) * binomial(n+2,n-k).
a(n) = Sum_{k=0..n} (-3)^k * 13^(n-k) * (2*k+1) * binomial(2*k,k) * binomial(n+2,n-k).
a(n) = binomial(n+2,2) * A386362(n).
a(n) = ((n+2)/2) * Sum_{k=0..floor(n/2)} 9^k * 7^(n-2*k) * binomial(n+1,n-2*k) * binomial(2*k+1,k).
a(n) = Sum_{k=0..n} (7/2)^k * (-13/14)^(n-k) * (2*k+1) * binomial(2*k,k) * binomial(k,n-k).
a(n) ~ sqrt(3*n) * 13^(n + 3/2) / (36*sqrt(Pi)). - Vaclav Kotesovec, Aug 21 2025