OFFSET
0,1
COMMENTS
Leading zeros in continued fraction omitted.
The geometric mean of the sequence equals Khintchine's constant K=2.685452001 = A002210 since the frequency of the integers agrees with the Gauss-Kuzmin distribution. - Jwalin Bhatt, Nov 24 2025
REFERENCES
K. Dajani and C. Kraaikamp, Ergodic Theory of Numbers, Math. Assoc. America, 2002, p. 72.
LINKS
Robert Israel, Table of n, a(n) for n = 0..10299
EXAMPLE
MAPLE
seq(seq(op(cfrac(i/j, 'quotients')[2..-1]), i=1..j-1), j=2..20); # Robert Israel, Sep 18 2015
MATHEMATICA
Table[Rest@ ContinuedFraction[k/n], {n, 2, 11}, {k, n - 1}] // Flatten (* Michael De Vlieger, Sep 18 2015 *)
PROG
(PARI) {m=11; for(i=2, m, for(j=1, i-1, c=contfrac(j/i); for(k=2, matsize(c)[2], print1(c[k], ", "))))}
(Python)
from sympy import Rational, continued_fraction_iterator
A072193 = [cf for i in range(2, 12) for j in range(1, i) for cf in continued_fraction_iterator(Rational(i, j))] # Jwalin Bhatt, Nov 24 2025
CROSSREFS
KEYWORD
nonn,easy,tabf
AUTHOR
N. J. A. Sloane, Nov 10 2002
EXTENSIONS
Extended by Klaus Brockhaus and Vladeta Jovovic, Nov 13 2002
STATUS
approved
