OFFSET
0,2
COMMENTS
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..250
Eric Weisstein's World of Mathematics, Hurwitz Zeta Function
Eric Weisstein's World of Mathematics, Trigamma Function
FORMULA
a(n) = numerator of 8*Catalan + Pi^2 - Zeta(2, (4 n + 1)/4), with the Catalan constant given in A006752.
a(n) = numerator(r(n)) with r(n) = Zeta(2, 1/4) - Zeta(2, n + 1/4), with the Hurwitz Zeta function (see the name). With Zeta(2, 1/4) = Psi(1, 1/4) = 8*Catalan + Pi^2 this is the preceding formula, where Psi(1, z) is the Trigamma function. - Wolfdieter Lang, Nov 14 2017
MAPLE
r := n -> Psi(1, 1/4) - Zeta(0, 2, n+1/4):
seq(numer(simplify(r(n))), n=0..13); # Peter Luschny, Nov 14 2017
MATHEMATICA
Table[Numerator[FunctionExpand[8*Catalan + Pi^2 - Zeta[2, (4*n + 1)/4]]], {n, 0, 20}] (* Vaclav Kotesovec, Nov 14 2017 *)
Numerator[Table[128*n*Sum[(1 + 4*k + 2*n) / ((1 + 4*k)^2*(1 + 4*k + 4*n)^2), {k, 0, Infinity}], {n, 0, 20}]] (* Vaclav Kotesovec, Nov 14 2017 *)
Numerator[Table[16*Sum[1/(4*k + 1)^2, {k, 0, n - 1} ], {n, 0, 20}]] (* Vaclav Kotesovec, Nov 14 2017 *)
PROG
(PARI) for(n=0, 20, print1(numerator(sum(k=0, n-1, 1/(4*k+1)^2)), ", ")) \\ G. C. Greubel, Aug 22 2018
(Magma) [1] cat [Numerator((&+[1/(4*k+1)^2: k in [0..n-1]])): n in [1..20]]; // G. C. Greubel, Aug 22 2018
CROSSREFS
KEYWORD
frac,nonn,easy
AUTHOR
Artur Jasinski, Mar 03 2010
EXTENSIONS
Name simplified and offset set to 0 by Peter Luschny, Nov 14 2017
STATUS
approved