OFFSET
1,2
COMMENTS
Each cycle is written with the smallest element first and cycles are arranged in increasing order of their first elements.
LINKS
Wikipedia, Permutation
FORMULA
T(n,1) = n * n!.
T(n,n) = floor((n-1)!*(n+2)/2).
EXAMPLE
T(3,2) = 13 because the sum of the second entries in all cycles of all permutations of [3] ((123), (132), (12)(3), (13)(2), (1)(23), (1)(2)(3)) is 2+3+2+3+3+0 = 13.
Triangle T(n,k) begins:
: 1;
: 4, 2;
: 18, 13, 5;
: 96, 83, 43, 18;
: 600, 582, 342, 192, 84;
: 4320, 4554, 2874, 1824, 1068, 480;
: 35280, 39672, 26232, 17832, 11784, 7080, 3240;
: 322560, 382248, 261288, 185688, 131256, 88920, 54360, 25200;
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Alois P. Heinz, Apr 26 2017
STATUS
approved