OFFSET
0,2
COMMENTS
AGM(x,y) = AGM((x+y)/2,sqrt(x*y)) is the arithmetic-geometric mean.
LINKS
Eric Weisstein's World of Mathematics, Arithmetic-Geometric Mean
FORMULA
Recurrence: n^3*a(n) = 4*(2*n - 1)*(3*n^2 - 3*n + 2)*a(n-1) - 16*(n-1)*(13*n^2 - 26*n + 20)*a(n-2) + 128*(2*n - 3)*(3*n^2 - 9*n + 8)*a(n-3) - 1024*(n-2)^3*a(n-4).
a(n) ~ 2^(3*n + 3) * (log(4*n) + gamma) / (Pi^2 * n), where gamma is the Euler-Mascheroni constant A001620.
MATHEMATICA
CoefficientList[Series[(2*EllipticK[1/(1 - 1/(4*x))^2]/(Pi*(1 - 4*x)))^2, {x, 0, 25}], x]
CoefficientList[Series[Hypergeometric2F1[1/2, 1/2, 1, 16*x*(1 - 4*x)]^2, {x, 0, 25}], x]
CROSSREFS
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Sep 27 2019
STATUS
approved