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!)
A111919 Denominator of x(n) = Sum_{k=1..n} ((odd part of k)/(k^3)). 6
1, 8, 72, 576, 14400, 1600, 78400, 627200, 50803200, 50803200, 6147187200, 6147187200, 1038874636800, 1038874636800, 1038874636800, 8310997094400, 2401878160281600, 266875351142400, 96342001762406400, 96342001762406400 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Numerator of x(n) = A111918(n);
x(n) = A111918(n)/a(n) ---> Pi*Pi/7 = 6*zeta(2)/7.
REFERENCES
G. Pólya and G. Szegő, Problems and Theorems in Analysis II (Springer 1924, reprinted 1972), Part Eight, Chap. 1, Sect. 6, Problem 50.
LINKS
Eric Weisstein's World of Mathematics, Odd Part
Eric Weisstein's World of Mathematics, Riemann Zeta Function zeta(2)
MAPLE
S:= 0: Res:= NULL:
for k from 1 to 25 do
S:= S + 1/k^2/2^padic:-ordp(k, 2);
Res:= Res, denom(S);
od:
Res; # Robert Israel, Jan 13 2020
MATHEMATICA
oddPart[n_] := n/2^IntegerExponent[n, 2];
x[n_] := Sum[oddPart[k]/k^3, {k, 1, n}];
a[n_] := Denominator[x[n]];
Array[a, 20] (* Jean-François Alcover, Dec 13 2021 *)
PROG
(Magma) val:=func<n|n/2^Valuation(n, 2)>; [Denominator(&+[val(k)/(k^3):k in [1..n]]):n in [1..20]]; // Marius A. Burtea, Jan 13 2020
CROSSREFS
Sequence in context: A270241 A054615 A344067 * A052379 A246940 A158798
KEYWORD
nonn,frac
AUTHOR
Reinhard Zumkeller, Aug 21 2005
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 25 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)