A269981 Decimal expansion of the number having (2,4,6,8,10,...) = A005843 as its factorial-nested interval sequence.
1, 6, 9, 4, 4, 6, 6, 4, 9, 0, 6, 6, 4, 3, 3, 8, 5, 1, 0, 7, 6, 1, 9, 5, 9, 6, 5, 9, 7, 9, 6, 9, 0, 2, 4, 1, 7, 5, 8, 6, 9, 5, 6, 0, 5, 1, 9, 2, 6, 9, 9, 2, 4, 2, 8, 4, 1, 9, 7, 8, 2, 4, 9, 4, 2, 4, 3, 0, 9, 5, 1, 0, 1, 3, 4, 7, 0, 6, 1, 8, 1, 0, 9, 9, 6, 3
Offset: 0
Examples
x = 0.16944664906643385107619596597969024...
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