A334605 Denominator of Sum_{k=1..n} (-1)^(k+1)/k^6.
1, 64, 46656, 2985984, 46656000000, 5184000000, 609892416000000, 39033114624000000, 256096265048064000000, 256096265048064000000, 453690155404813307904000000, 453690155404813307904000000, 2189875725319351517910798336000000
Offset: 1
Examples
The first few fractions are: 1, 63/64, 45991/46656, 2942695/2985984, 45982595359/46656000000, 5109066151/5184000000, ... = A136677/A334605.
Programs
-
Mathematica
Denominator @ Accumulate[Table[(-1)^(k + 1)/k^6, {k, 1, 13}]] (* Amiram Eldar, May 07 2020 *)
-
PARI
a(n) = denominator(sum(k=1, n, (-1)^(k+1)/k^6)); \\ Michel Marcus, May 07 2020
Comments