OFFSET
2,3
COMMENTS
Equals A071223/2. See that entry for further information.
LINKS
T. M. Cover, The number of linearly inducible orderings of points in d-space, SIAM J. Applied Math., 15 (1967), 434-439.
MAPLE
T:=proc(n, k) if k>=n then 0 elif k=1 and n>=2 then 1 elif n=2 and k>=1 then 1 elif k=n-1 then n!/2 else T(n-1, k)+(n-1)*T(n-1, k-1) fi end:seq(seq(T(n, k), k=1..n-1), n=2..12);
CROSSREFS
KEYWORD
AUTHOR
N. J. A. Sloane, Oct 26 2003
EXTENSIONS
More terms from Emeric Deutsch, May 24 2004
STATUS
approved