OFFSET
0,1
COMMENTS
Leading zeros in continued fraction omitted.
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], ", "))))}
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