OFFSET
1,1
LINKS
Travis Sherman, Summation of Glaisher- and Apéry-like Series, University of Arizona, May 23 2000, p. 14, (3.79)-(3.83). (Scanned local copy without blank on p.12, with permission from the author.)
FORMULA
a(n) = f1(n)*9*(n-1)!, where f1(n) corresponds to the x values such that Sum_{k>=0} 1/(binomial(2*k,k)*(k+n)) = x*Pi*sqrt(3) - y*Pi^2 - z. (See examples for connection with a(n) in terms of material at Links section.)
f2(n) corresponds to the y values, so f2(n) = (1/9)*((2*n-1)!/((n-1)!)^2).
a(n) ~ Pi * 2^(2*n + 1/2) * n^n / (sqrt(3) * exp(n)). - Vaclav Kotesovec, Apr 13 2018
EXAMPLE
Examples ((3.79) - (3.83)) at page 14 in Links section as follows, respectively.
For n=1, f1(1) = 4/9, so a(1) = 4.
For n=2, f1(2) = 22/9, so a(2) = 22.
For n=3, f1(3) = 109/9, so a(3) = 218.
For n=4, f1(4) = 508/9, so a(4) = 3048.
For n=5, f1(5) = 4571/18, so a(5) = 54852.
MATHEMATICA
RecurrenceTable[{a[n] == 2*((2*n - 1)*a[n-1] - (n-2)!), a[1] == 4}, a, {n, 1, 20}] (* Vaclav Kotesovec, Apr 13 2018 *)
Table[FullSimplify[4^n*Sqrt[Pi/3] * Gamma[n + 1/2] + Gamma[n] * Hypergeometric2F1[1, n, n + 3/2, 1/4]/(2*n + 1)], {n, 1, 20}] (* Vaclav Kotesovec, Apr 13 2018 *)
nmax = 15; Table[CoefficientList[Expand[FunctionExpand[ Table[Sum[1/(Binomial[2*j, j]*(j + m)), {j, 0, Infinity}], {m, 1, nmax}]]], Pi][[n, 2]]*9*(n-1)! / Sqrt[3], {n, 1, nmax}] (* Vaclav Kotesovec, Apr 13 2018 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Detlef Meya, Apr 13 2018
EXTENSIONS
More terms from Vaclav Kotesovec, Apr 13 2018
STATUS
approved
