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”).

A143084
Triangle read by rows: T(n,m) = (n + m)!.
4
1, 1, 2, 2, 6, 24, 6, 24, 120, 720, 24, 120, 720, 5040, 40320, 120, 720, 5040, 40320, 362880, 3628800, 720, 5040, 40320, 362880, 3628800, 39916800, 479001600, 5040, 40320, 362880, 3628800, 39916800, 479001600, 6227020800, 87178291200
OFFSET
0,3
FORMULA
T(n,m) = (n + m)!.
EXAMPLE
Triangle begins:
1;
1, 2;
2, 6, 24;
6, 24, 120, 720;
24, 120, 720, 5040, 40320;
120, 720, 5040, 40320, 362880, 3628800;
720, 5040, 40320, 362880, 3628800, 39916800, 479001600;
...
MATHEMATICA
t[n_, m_] := (n + m)!; Table[Table[t[n, m], {m, 0, n}], {n, 0, 10}]; Flatten[%]
CROSSREFS
Column m=0 gives A000142.
T(2n,n) gives A100732.
Main diagonal gives A010050.
Row sums give A374574.
Sequence in context: A188958 A141902 A069466 * A188962 A076741 A320603
KEYWORD
nonn,easy,tabl
AUTHOR
EXTENSIONS
Offset changed to 0 by Jinyuan Wang, Dec 19 2020
STATUS
approved