login
A114760
n-th digit after decimal point of the successive approximations to phi = .618...; equally, n-th digit after decimal point of F(n)/F(n+1).
0
0, 0, 6, 0, 0, 4, 6, 5, 8, 0, 5, 2, 5, 4, 1, 2, 7, 9, 8, 7, 6, 8, 6, 8, 3, 3, 5, 0, 1, 2, 7, 1, 0, 2, 4, 6, 1, 5, 8, 0, 2, 4, 6, 9, 3, 3, 7, 1, 7, 2, 0, 7, 2, 8, 8, 0, 1, 0, 4, 3, 7, 1, 6, 4, 1, 2, 7, 9, 5, 6, 5, 4, 2, 2, 3, 1, 3, 8, 5, 8, 9, 7, 2, 4, 9, 9, 5, 5, 7, 4, 2, 3, 1, 6, 6, 0, 6, 9, 4, 8, 0, 7, 5, 8, 5
OFFSET
1,3
EXAMPLE
1/1 = 1.0
1/2 = 0.50
2/3 = 0.666...
3/5 = 0.6000...
5/8 = 0.62500
8/13 = 0.615384...
13/21 = 0.6190476...
MATHEMATICA
f[n_] := RealDigits[ Fibonacci[n]/Fibonacci[n + 1], 10, 111][[1, n]]; Array[f, 105] (* Robert G. Wilson v *)
CROSSREFS
Sequence in context: A228532 A019956 A212720 * A261508 A344182 A217219
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Nov 17 2005
EXTENSIONS
More terms from Robert G. Wilson v, Jan 03 2006
STATUS
approved