|
| |
|
|
A136127
|
|
Number of permutations of {1,2,...,n} having excedance set {1,2,...,k} for some k=0...n-1 (for k=0 we have the empty set). The excedance set of a permutation p in S_n is the set of indices i such that p(i)>i.
|
|
1
| |
|
|
1, 2, 5, 16, 63, 294, 1585, 9692, 66275, 501106, 4150965, 37383528, 363674407, 3800501438, 42460229945, 505029329524, 6371454458859, 84981113118090, 1194793819467325, 17660505018471680, 273788611235722031
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,2
|
|
|
COMMENTS
| Row sums of A136126.
|
|
|
REFERENCES
| R. Ehrenborg and E. Steingrimsson, The excedance set of a permutation, Advances in Appl. Math., 24, 284-299, 2000 (Proposition 6.5).
|
|
|
FORMULA
| a(n)=Sum(Sum (-1)^(k+1-i)*i!*i^(n-1-k)*Stirling2(k+1,i),i=1..k+1),k=0..n-1).
|
|
|
EXAMPLE
| a(3)=5 because we have 123,312,213,321 and 231 with excedance sets empty, {1}, {1}, {1} and {1,2}, respectively.
|
|
|
MAPLE
| with(combinat): a:=proc(n) options operator, arrow: sum(sum((-1)^(k+1-i)*factorial(i)*i^(n-1-k)*stirling2(k+1, i), i=1..k+1), k=0..n-1) end proc: seq(a(n), n=1..22);
|
|
|
CROSSREFS
| Cf. A136126.
Sequence in context: A124470 A105072 A022494 * A111004 A079566 A059685
Adjacent sequences: A136124 A136125 A136126 * A136128 A136129 A136130
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Emeric Deutsch (deutsch(AT)duke.poly.edu), Jan 17 2008
|
| |
|
|