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!)
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 (list; table; graph; refs; listen; history; text; internal format)
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
Sequence in context: A364708 A322944 A019576 * A352125 A136766 A199501
KEYWORD
nonn,tabl,easy
AUTHOR
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 24 11:21 EDT 2024. Contains 371936 sequences. (Running on oeis4.)