A278145 Denominator of partial sums of the m=1 member of an m-family of series considered by Hardy with value 4/Pi (see A088538).
1, 8, 64, 1024, 16384, 131072, 1048576, 33554432, 1073741824, 8589934592, 68719476736, 1099511627776, 17592186044416, 140737488355328, 1125899906842624, 72057594037927936, 4611686018427387904, 36893488147419103232, 295147905179352825856, 4722366482869645213696
Offset: 0
References
- G. H. Hardy, Ramanujan, AMS Chelsea Publ., Providence, RI, 2002, p. 106, eq. (7.5.1), and references on p. 112 for Darling (1), p. 232, and Watson (5), p. 235.
Programs
-
Mathematica
Table[Denominator@ Sum[(1/(k + 1)) (Pochhammer[1/2, k]/k!)^2, {k, 0, n}], {n, 0, 19}] (* or *) Table[Denominator@ Sum[(1/(k + 1)) (Binomial[-1/2, k])^2, {k, 0, n}], {n, 0, 19}] (* or *) Table[Denominator@ Sum[(1/(k + 1)) ((2 k - 1)!!/(2 k)!!)^2, {k, 0, n}], {n, 0, 19}] (* Michael De Vlieger, Nov 15 2016 *)
Formula
a(n)= denominator(r(n)) with the rationals r(n) = Sum_{k=0..n}(1/(k+1))*(risefac(1/2,k)/k!)^2 = Sum_{k=0..n} (1/(k+1))*(binomial(-1/2,k))^2 = Sum_{k=0..n}(1/(k+1))*((2*k-1)!!/(2*k)!!)^2 , with the rising factorial risefac(x,k) defined above. The double factorials are given in A001147 and A000165 with (-1)!! := 1.
Comments