login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A143947 Triangle read by rows: T(n,k) is the number of permutations of [n] for which the sum of the positions of the right-to-left minima is k (1 <= k <= n*(n+1)/2). 7
1, 0, 1, 1, 0, 0, 2, 1, 2, 1, 0, 0, 0, 6, 2, 3, 7, 2, 3, 1, 0, 0, 0, 0, 24, 6, 8, 14, 27, 10, 9, 14, 3, 4, 1, 0, 0, 0, 0, 0, 120, 24, 30, 46, 68, 142, 41, 53, 50, 73, 23, 17, 23, 4, 5, 1, 0, 0, 0, 0, 0, 0, 720, 120, 144, 204, 270, 436, 834, 260, 256, 351, 310, 463, 148, 145, 118, 148, 40 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,7
COMMENTS
Row n contains n(n+1)/2 entries, first n-1 of which are 0. Sum of entries in row n = n! = A000142(n).
Sum of entries in column n = A143948(n).
T(n,n) = (n-1)!.
Sum_{k=n..n(n+1)/2} k*T(n,k) = A001705(n).
LINKS
FORMULA
Generating polynomial of row n is (n-1+t)(n-2+t^2)(n-3+t^3)...(1+t^(n-1))t^n.
EXAMPLE
T(4,6) = 3 because we have 4132, 3142 and 2143 with right-to-left minima at positions 2 and 4.
Triangle starts:
1;
0, 1, 1;
0, 0, 2, 1, 2, 1;
0, 0, 0, 6, 2, 3, 7, 2, 3, 1;
0, 0, 0, 0, 24, 6, 8, 14, 27, 10, 9, 14, 3, 4, 1;
...
MAPLE
P:=proc(n) options operator, arrow: sort(expand(product(t^(n-j)+j, j=0..n-1))) end proc: for n to 7 do seq(coeff(P(n), t, i), i=1..(1/2)*n*(n+1)) end do; # yields sequence in triangular form
MATHEMATICA
T[n_] := CoefficientList[Product[n-k+t^k, {k, 1, n-1}] t^(n-1), t];
Array[T, 10] // Flatten (* Jean-François Alcover, Feb 14 2021 *)
CROSSREFS
T(n,2n) gives A368678.
Row maxima give A367594.
Sequence in context: A278158 A218880 A024356 * A226518 A337518 A073781
KEYWORD
nonn,tabf
AUTHOR
Emeric Deutsch, Sep 22 2008
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 20:26 EDT 2024. Contains 371781 sequences. (Running on oeis4.)