OFFSET
0,3
REFERENCES
Chao-Ping Chen, Richard B. Paris, On the asymptotic expansions of products related to the Wallis, Weierstrass, and Wilf formulas, Applied Mathematics and Computation 293 (2017) 30-39. See (3.12).
LINKS
Chao-Ping Chen, Richard B. Paris, On the asymptotic expansions of products related to the Wallis, Weierstrass, and Wilf formulas, arXiv:1511.09217 [math.CA], 2015. See (3.12).
FORMULA
See (3.8) and (3.11) in Chen link.
MATHEMATICA
nu[j_] := (-1)^(j+1) ((4 - 2^(1-j)) BernoulliB[j+1] - (j+1) 2^(-j))/(j*(j + 1)); mu[j_] := mu[j] = If[j == 0, 1, Sum[k nu[k] mu[j-k], {k, j}]/j]; Table[Numerator@mu@n, {n, 0, 23}] (* Giovanni Resta, May 29 2019 *)
Numerator[CoefficientList[Series[16^n/(Pi*(2*n + 1) * Binomial[2*n, n]^2), {n, Infinity, 20}], 1/n]] (* Vaclav Kotesovec, Jun 02 2019 *)
PROG
(PARI) nu(j) = (-1)^(j+1)*((4-2^(1-j))*bernfrac(j+1) - (j+1)*2^(-j))/(j*(j+1));
mu(j) = if (j==0, 1, sum(k=1, j, k*nu(k)*mu(j-k))/j);
a(n) = numerator(mu(n)); \\ Michel Marcus, May 29 2019
CROSSREFS
KEYWORD
sign
AUTHOR
N. J. A. Sloane, Sep 25 2017
EXTENSIONS
More terms from Michel Marcus, May 29 2019
STATUS
approved