OFFSET
1,3
COMMENTS
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..11269 (rows 1 <= n <= 80).
EXAMPLE
The sum of the reciprocals of the terms of the first 6 rows is 1 + 1 + 1/2 + 1/2 + 1/2 + 1/3 + 1/2 + 1/4 + 1/3 = 59/12. 59/12 equals the continued fraction 4 + 1/(1 + 1/11). So row 7 is (4,1,11).
MATHEMATICA
f[l_List] := Append[l, ContinuedFraction[Plus @@ (1/# &) /@ Flatten[l]]]; Flatten@ Nest[f, {{1}}, 15] (* Ray Chandler, Dec 26 2006 *)
CROSSREFS
KEYWORD
easy,nonn,tabf
AUTHOR
Leroy Quet, Dec 25 2006
EXTENSIONS
Extended by Ray Chandler, Dec 26 2006
STATUS
approved