|
Search: id:A136124
|
|
|
| A136124 |
|
Triangle read by rows: T(n,k)=(-1)^(n+k)*Sum(s(n,j),j=1..k), where s(n,j) are the signed Stirling numbers of the first kind (n>=2; 1<=k<=n-1; s(n,j)=A008275(n,j)). |
|
+0 2
|
|
| 1, 2, 1, 6, 5, 1, 24, 26, 9, 1, 120, 154, 71, 14, 1, 720, 1044, 580, 155, 20, 1, 5040, 8028, 5104, 1665, 295, 27, 1, 40320, 69264, 48860, 18424, 4025, 511, 35, 1, 362880, 663696, 509004, 214676, 54649, 8624, 826, 44, 1, 3628800, 6999840, 5753736, 2655764
(list; table; graph; listen)
|
|
|
OFFSET
|
2,2
|
|
|
COMMENT
|
Sum of entries in row n = n!/2 = A001710(n). T(n,1)=(n-1)!=A000142(n-1). Columns 2,3,4, and 5 yield A001705,A001706,A001707, and A001708, respectively.
See A143491 for the interpretation of these numbers as restricted Stirling numbers of the first kind. See A049444 for a signed version of this array. [From Peter Bala (pbala(AT)toucansurf.com), Aug 25 2008]
|
|
FORMULA
|
E.g.f.=Sum[(1/n!)T(n,k)x^n*t^k, k=1..n-1, n>=2]=1/[(1+t)(1-x)^t]-(1+tx)/(1+t). Generating polynomial of row n = t*Product(j+t, j=2..n-1). T(n,k) is the sum of all products of n-k-1 different integers taken from {2,3,...,n-1}. For example, T(6,3)=2*3+2*4+2*5+3*4+3*5+4*5=71.
|
|
EXAMPLE
|
T(6,3)=71 because (-1)^9*[s(6,1)+s(6,2)+s(6,3)]=-(-120+274-225)=71.
Triangle starts:
1;
2,1;
6,5,1;
24,26,9,1;
120,154,71,14,1;
|
|
MAPLE
|
with(combinat): T:=proc(n, k) options operator, arrow: (-1)^(n+k)*(sum(stirling1(n, j), j=1..k)) end proc: for n from 2 to 11 do seq(T(n, k), k=1..n-1) end do; # yields sequence in triangular form
|
|
CROSSREFS
|
Cf. A000142, A008275, A001705, A001706, A001707, A001708, A001710.
A049444, A143491. [From Peter Bala (pbala(AT)toucansurf.com), Aug 25 2008]
Adjacent sequences: A136121 A136122 A136123 this_sequence A136125 A136126 A136127
Sequence in context: A121576 A121575 A049444 this_sequence A143491 A070918 A113381
|
|
KEYWORD
|
nonn,tabl
|
|
AUTHOR
|
Emeric Deutsch (deutsch(AT)duke.poly.edu), Dec 23 2007
|
|
|
Search completed in 0.002 seconds
|