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

A141906
Triangle t(n,m) = (n*m)!/(m!^n) read by rows, 0<=m<=n.
3
1, 1, 1, 1, 2, 6, 1, 6, 90, 1680, 1, 24, 2520, 369600, 63063000, 1, 120, 113400, 168168000, 305540235000, 623360743125120, 1, 720, 7484400, 137225088000, 3246670537110000, 88832646059788350720, 2670177736637149247308800
OFFSET
0,5
COMMENTS
Row sums are in A221177.
LINKS
Seiichi Manyama, Rows n = 0..26, flattened
EXAMPLE
1;
1, 1;
1, 2, 6;
1, 6, 90, 1680;
1, 24, 2520, 369600, 63063000;
1, 120, 113400, 168168000, 305540235000, 623360743125120;
1, 720, 7484400, 137225088000, 3246670537110000, 88832646059788350720, 2670177736637149247308800;
MAPLE
A141906 := proc(n, m)
(n*m)!/m!^n ;
end proc:
seq(seq(A141906(n, m), m=0..n), n=0..5) ; # R. J. Mathar, Nov 08 2011
MATHEMATICA
Clear[t, n, m]; t[n_, m_] = (n*m)!/m!^n; Table[Table[t[n, m], {m, 0, n}], {n, 0, 10}]; Flatten[%]
CROSSREFS
KEYWORD
nonn,tabl,easy
AUTHOR
STATUS
approved