A307209 Decimal expansion of Product_{i>=1, j>=1} (1 + 1/(i^3 + j^3)).
3, 5, 0, 4, 7, 8, 2, 9, 9, 9, 3, 3, 9, 7, 2, 8, 3, 7, 5, 8, 9, 1, 1, 2, 0, 5, 7, 0, 4, 3, 8, 0, 6, 1, 2, 5, 5, 8, 3, 8, 9, 3, 2, 4, 7, 8, 6, 2, 7, 1, 2, 7, 5, 3, 5, 4, 1, 9, 9, 4, 6, 2, 6, 6, 1, 4, 0, 5, 8, 3, 8, 5, 0, 3, 5, 0, 3, 4, 7, 5, 6, 3, 5, 2, 7, 4, 7, 5, 0, 9, 5, 0, 5, 1, 3, 7, 8, 9, 1, 7, 8, 4, 5, 9, 7
Offset: 1
Examples
3.50478299933972837589112057043806125583893247862712753541994626614058385...
Links
- Vaclav Kotesovec, Table of n, a(n) for n = 1..224
Programs
-
Mathematica
(* The iteration cycle: *) $MaxExtraPrecision = 1000; funs[n_] := Product[1 + 1/(i^3 + j^3), {i, 1, n}, {j, 1, n}]; Do[Print[N[Sum[(-1)^(m + j)*funs[j*Floor[200/m]] * j^(m - 1)/(j - 1)!/(m - j)!, {j, 1, m}], 100]], {m, 10, 100, 10}]
-
PARI
default(realprecision, 50); exp(sumalt(k=1, -(-1)^k/k*sumnum(i=1, sumnum(j=1, 1/(i^3+j^3)^k)))) \\ 15 decimals correct
Comments