A269980 Decimal expansion of the number having (1,3,5,7,9,...) = A005408 as its factorial-nested interval sequence.
5, 2, 0, 9, 2, 0, 1, 4, 9, 6, 5, 3, 4, 8, 7, 4, 7, 5, 7, 6, 2, 2, 8, 1, 9, 8, 9, 1, 1, 8, 7, 4, 3, 3, 7, 5, 4, 8, 1, 4, 5, 7, 9, 0, 7, 6, 5, 4, 9, 6, 8, 3, 6, 7, 1, 8, 3, 5, 7, 1, 7, 3, 6, 0, 5, 6, 5, 6, 3, 6, 0, 0, 1, 4, 3, 3, 2, 3, 4, 6, 3, 9, 4, 6, 6, 0
Offset: 0
Examples
x = 0.5209201496534874757622819891187433754...
Programs
-
Mathematica
r[n_] := 1/n!; n[k_] := 2 k -1; Table[n[k], {k, 1, 1000}]; len[1] = r[n[1]] - r[n[1] + 1]; len[k_] := len[k - 1]*(r[n[k]] - r[n[k] + 1]) sum = r[n[1] + 1] + Sum[len[i]*r[n[i + 1] + 1], {i, 1, 300}]; g = N[sum, 150] RealDigits[g, 10, 100][[1]]
Comments