A269979 Decimal expansion of the number having (1,2,3,4,...) = A000027 as its factorial-nested interval sequence.
5, 9, 0, 4, 5, 2, 3, 5, 4, 3, 5, 2, 0, 5, 5, 4, 8, 1, 6, 8, 1, 2, 4, 3, 2, 8, 1, 0, 1, 3, 5, 0, 2, 4, 2, 7, 9, 7, 1, 0, 4, 3, 5, 7, 7, 1, 7, 7, 7, 3, 5, 0, 0, 6, 3, 9, 6, 4, 8, 3, 9, 1, 0, 6, 9, 9, 8, 9, 2, 0, 1, 5, 6, 0, 3, 8, 8, 8, 9, 8, 9, 4, 6, 7, 7, 0
Offset: 0
Examples
x = 0.59045235435205548168124328101350...
Programs
-
Mathematica
r[n_] := 1/n!; n[k_] := k; 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