A269802 Decimal expansion of the number having (1,2,3,4,...) as its Fibonacci-nested interval sequence.
6, 8, 4, 7, 8, 8, 2, 6, 7, 5, 2, 2, 6, 7, 4, 7, 9, 3, 3, 8, 2, 4, 5, 5, 8, 2, 0, 0, 3, 7, 0, 5, 8, 3, 3, 1, 3, 2, 5, 4, 7, 8, 8, 5, 2, 8, 6, 2, 6, 3, 4, 2, 3, 9, 4, 6, 5, 2, 8, 6, 9, 2, 2, 1, 6, 4, 5, 1, 2, 7, 4, 6, 2, 9, 8, 2, 6, 9, 2, 4, 1, 7, 7, 8, 4, 9
Offset: 0
Examples
x = 0.68478826752267479338245582003...
Programs
-
Mathematica
f[n_] := Fibonacci[n]; p[1] = f[3]; p[n_] := p[n - 1] f[n + 2] Table[p[i]*f[i], {i, 1, 10}] s = Sum[1/(p[i] f[i]), {i, 1, 200}]; RealDigits[N[s, 100]][[1]]
Formula
x = sum{1/(P(k)F(k)), k >= 1}, where P(k) = F(1)*F(2)***F(k+2). F = A000045 (Fibonacci numbers).
Comments