OFFSET
1,2
COMMENTS
Numbers in the order in which they appear in Leibniz's Harmonic Triangle (A003506). This sequence is a permutation of the natural numbers. - Robert G. Wilson v, Jun 12 2014
REFERENCES
L. Comtet, Advanced Combinatorics, Reidel, 1974, p. 83, Problem 25.
LINKS
Ivan Neretin, Table of n, a(n) for n = 1..10000
EXAMPLE
1/1; 1/2, 1/2; 1/3, 1/6, 1/3; 1/4, 1/12, 1/12, 1/4; 1/5, 1/20, 1/30, 1/20, 1/5; ...
MATHEMATICA
t[n_, k_] := Denominator[n!*k!/(n + k + 1)!]; DeleteDuplicates@ Flatten@ Table[t[n - k, k], {n, 0, 14}, {k, 0, n/2}] (* Robert G. Wilson v, Jun 12 2014 *)
CROSSREFS
KEYWORD
tabf,nonn,easy
AUTHOR
EXTENSIONS
More terms from James A. Sellers, Dec 13 1999
STATUS
approved