OFFSET
0,3
COMMENTS
Row n sums to (2n)!
Dot product of row n and (0,1,2,3,...n) is equal to (2n)!
Dot product of row n and (0,0,1,2,...n-1) is equal to T(n,0)
LINKS
Andrew Woods, Rows n = 0..50 of triangle, flattened
FORMULA
EXAMPLE
Triangle begins:
1
0 2
8 8 8
240 288 144 48
13824 15744 8064 2304 384
There are T(3, 2) = 144 ways to arrange three couples in a row so that exactly two of them are together.
MATHEMATICA
Table[Table[Sum[(-1)^k Binomial[n-i, k](2n-i-k)! 2^(k+i), {k, 0, n-i}]*Binomial[n, i], {i, 0, n}], {n, 0, 10}]//Grid (* Geoffrey Critzer, Apr 21 2014 *)
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Andrew Woods, Aug 01 2011
STATUS
approved