A295371 a(n) = (1/(2n))*Sum_{k=0..n-1} C(n-1, k)*C(n+k, k)*C(2k, k)*(k+2)*(-3)^(n-1-k).
1, 3, 19, 127, 921, 6921, 53523, 422199, 3382417, 27429043, 224636259, 1854761437, 15419579761, 128941830993, 1083686483259, 9147887134119, 77520233226537, 659167237928691, 5622149927918763, 48083938099637247
Offset: 1
Keywords
Examples
a(3) = 19 since (1/6)*Sum_{k=0,1,2} binomial(2,k)*binomial(3+k,k)*binomial(2k,k)*(k+2)*(-3)^(2-k) = (2*(-3)^2 + 2*4*2*3*(-3) + 10*6*4)/6 = 19.
Links
- Zhi-Wei Sun, Table of n, a(n) for n = 1..200
- Heba Bou KaedBey, Mark van Hoeij, and Man Cheung Tsui, Solving Third Order Linear Difference Equations in Terms of Second Order Equations, arXiv:2402.11121 [math.AC], 2024. See p. 6.
Programs
-
Maple
ogf := EllipticK((4*sqrt(x))/(3*x + 1))/(2*Pi) - (1/4); ser := series(ogf, x, 22): seq(coeff(ser, x, n), n = 1..20); # Peter Luschny, Nov 10 2022
-
Mathematica
f[n_,k_]:=f[n,k]=Binomial[n-1,k]Binomial[n+k,k]Binomial[2k,k](k+2)(-3)^(n-1-k); s[n_]:=a[n]=Sum[f[n,k],{k,0,n-1}]/(2n); Table[s[n],{n,1,20}]
Formula
Via the Zeilberger algorithm we find that the sequence the following recurrence: (2n + 1)*(n + 3)^2*a(n + 3) = (2n + 1)*(7n^2 + 38n + 52)*a(n + 2) + 3*(2n + 5)*(7n^2 + 4n + 1)*a(n + 1) - 27*(2n + 5)*n^2*a(n).
From Mark van Hoeij, Nov 10 2022: (Start)
G.f.: (hypergeom([1/2, 1/2], [1], 16*x/(1 + 3*x)^2) - 1)/4.
G.f.: EllipticK((4*sqrt(x))/(3*x + 1))/(2*Pi) - (1/4). - Peter Luschny, Nov 10 2022
Extensions
Name simplified based on the proof of Mark van Hoeij by Peter Luschny, Nov 10 2022
Comments