login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A064846
Let r_1 = 1; r_{n+1} = [r_1; r_2, r_3,..., r_n]; n-th term is denominator of r_n.
9
1, 1, 1, 3, 18, 720, 1119600, 2726809311600, 16145931379144511904735600, 566327308576692897981544319968226968281922500063600
OFFSET
1,4
COMMENTS
[r_1; r_2, r_3,..., r_n] is a continued fraction, where the r's are rationals. limit{n -> infinity} r_n = 1.7118691868...
MATHEMATICA
r[1] := 1; r[n_] := r[n] = FromContinuedFraction[Table[r[i], {i, 1, n - 1, 1}]]; a[n_] := Denominator[r[n]]
CROSSREFS
Sequence in context: A365292 A070953 A163261 * A157544 A202946 A000853
KEYWORD
easy,frac,nonn
AUTHOR
Leroy Quet, Oct 31 2001; definition corrected May 04 2008
STATUS
approved