login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A084224
Denominators of successive approximations to zeta(3) = Sum_{k>0} 1/k^3, using Zeilberger's formula with s=2.
2
24, 1728, 324000, 19559232000, 208039104000, 181050031008000, 1889392861091736000, 32719838723847475200, 126909921829154720256000, 25243779460958994560841216000
OFFSET
1,1
LINKS
D. Zeilberger, Faster and Faster convergent series for zeta(3), arXiv:math/9804126 [math.CO], 1998.
FORMULA
a(n) = denominator( Sum_{k=1..n} (1/4)*(-1)^(k-1)*(56*k^2-32*k+5)/((2*k-1)^2 * binomial(3*k,k) * binomial(2*k,k) * k^3) ). - G. C. Greubel, Oct 08 2018
MAPLE
a:=n->add((1/4)*(-1)^(k-1)*(56*k^2-32*k+5)/((2*k-1)^2*binomial(3*k, k)*binomial(2*k, k)*k^3), k=1..n): seq(denom(a(n)), n=1..10); # Muniru A Asiru, Oct 09 2018
MATHEMATICA
Table[Denominator[Sum[(1/4)*(-1)^(k-1)*(56*k^2-32*k+5)/((2*k-1)^2*Binomial[3*k, k]* Binomial[2*k, k]*k^3), {k, 1, n}]], {n, 1, 30}] (* G. C. Greubel, Oct 08 2018 *)
PROG
(PARI) for(n=1, 15, print1(denominator(sum(k=1, n, (1/4)*(-1)^(k-1)*(56*k^2 -32*k +5)/((2*k-1)^2*binomial(3*k, k) *binomial(2*k, k)*k^3))), ", "))
(Magma) [Denominator((&+[(1/4)*(-1)^(k-1)*(56*k^2-32*k+5)/((2*k-1)^2*Binomial(3*k, k)*Binomial(2*k, k)*k^3): k in [1..n]])): n in [1..30]]; // G. C. Greubel, Oct 08 2018
(GAP) List(List([1..10], n->Sum([1..n], k->(1/4)*(-1)^(k-1)*(56*k^2-32*k+5)/((2*k-1)^2*Binomial(3*k, k)*Binomial(2*k, k)*k^3))), DenominatorRat); # Muniru A Asiru, Oct 09 2018
CROSSREFS
Numerators are in A084223, decimal expansion is in A002117.
Sequence in context: A229430 A054777 A301392 * A348589 A227257 A222999
KEYWORD
nonn,frac
AUTHOR
Ralf Stephan, May 19 2003
STATUS
approved