login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A292754 Numerators of coefficients in an asymptotic expansion of the Wallis sequence in inverse powers of n. 1
1, -1, 5, -11, 83, -143, 625, -1843, 24323, 61477, -14165, -8084893, 31181719, 1682401061, -3166220215, -251783137859, 3865962456803, 394670372519917, -765052915887545, -98394908192751193, 384080734825119709, 60838795345430052431, -119312155199695296505, -22845758944383820991909 (list; graph; refs; listen; history; text; internal format)
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
Cf. A088802 or A123854 (denominators).
Sequence in context: A319537 A345015 A002359 * A090518 A057726 A057727
KEYWORD
sign
AUTHOR
N. J. A. Sloane, Sep 25 2017
EXTENSIONS
More terms from Michel Marcus, May 29 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 08:28 EDT 2024. Contains 371927 sequences. (Running on oeis4.)