login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A203092
Triangular array read by rows. T(n,k) is the number of partial functions on {1,2,...,n} that are endofunctions with no cycles of length > 1 that have exactly k components.
1
1, 1, 1, 1, 4, 1, 1, 18, 9, 1, 1, 116, 78, 16, 1, 1, 1060, 810, 220, 25, 1, 1, 12702, 10335, 3260, 495, 36, 1, 1, 187810, 158613, 54740, 9835, 966, 49, 1, 1, 3296120, 2854908, 1046024, 209510, 24696, 1708, 64, 1
OFFSET
0,5
COMMENTS
Row sums = A088957.
T(n,0)= 1, the empty function.
T(n,n)= 1, the identity function.
T(n,n-1)= n^2 (apparently).
FORMULA
E.g.f.: exp(x)*exp(y T(x)) where T(x) is the e.g.f. for A000169.
EXAMPLE
T(2,1)= 4 because there are 4 such partial functions on {1,2}: 1->1, 2->2, 1->1 2->1, 1->2 2->2,
1
1 1
1 4 1
1 18 9 1
1 116 78 16 1
1 1060 810 220 25 1
1 12702 10335 3260 495 36 1
MATHEMATICA
nn = 8; t = Sum[n^(n - 1) x^n/n!, {n, 1, nn}];
f[list_] := Select[list, # > 0 &];
Map[f, Range[0, nn]! CoefficientList[ Series[Exp[x] Exp[y t], {x, 0, nn}], {x, y}]] // Flatten
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Geoffrey Critzer, Dec 29 2011
STATUS
approved