A093421 Triangle read by rows: T(n,k) is the denominator of f(n, k) = (Product_{i = 0..k-1} (n-i))/(Sum_{i = 1..k} i) for 1 <= k <= n.
1, 1, 3, 1, 1, 1, 1, 1, 1, 5, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 7, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 11, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 13, 1, 1, 1, 1, 1, 7, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
Offset: 1
Examples
Triangle T(n,k) (with rows n >= 1 and columns k >= 1) begins as follows: 1; 1, 3; 1, 1, 1; 1, 1, 1, 5; 1, 3, 1, 1, 1; 1, 1, 1, 1, 1, 7; 1, 1, 1, 1, 1, 1, 1; 1, 3, 1, 1, 1, 1, 1, 1; 1, 1, 1, 5, 1, 1, 1, 1, 1; 1, 1, 1, 1, 1, 1, 1, 1, 1, 11; ...
Formula
T(n,n) = denominator(f(n, n)) = denominator(2*(n-1)!/(n+1)).
Extensions
Edited and extended by David Wasserman, Aug 29 2006