OFFSET
2,2
LINKS
A. Laradji and A. Umar, Combinatorial results for the symmetric inverse semigroup, Semigroup Forum 75, (2007), 221-236.
FORMULA
T(n,k) = (n!/2!(n-k)!)sum(m=0,k-2,(-1^m/m!)C(n-2-m,k-2-m)).
EXAMPLE
T(4,2) = 6 because there are exactly 6 partial bijections (on a 4-element set) with exactly 2 fixed points and of height 2, namely: the 6 partial identities on 2-element subsets of the 4-element set.
PROG
(PARI) T(n, k) = (n!/2!*(n-k)!)*sum(m=0, k-2, ((-1)^m/m!)*binomial(n-2-m, k-2-m))
for (n=2, 10, for (k=2, n, print1(T(n, k), ", "))) \\ Michel Marcus, Apr 27 2016
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Abdullahi Umar, Sep 11 2008
STATUS
approved