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!)
A060539 Table by antidiagonals of number of ways of choosing k items from n*k. 11
1, 1, 2, 1, 6, 3, 1, 20, 15, 4, 1, 70, 84, 28, 5, 1, 252, 495, 220, 45, 6, 1, 924, 3003, 1820, 455, 66, 7, 1, 3432, 18564, 15504, 4845, 816, 91, 8, 1, 12870, 116280, 134596, 53130, 10626, 1330, 120, 9, 1, 48620, 735471, 1184040, 593775, 142506, 20475, 2024, 153, 10 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
Seiichi Manyama, Antidiagonals n = 1..140, flattened (first 20 antidiagonals from Harry J. Smith)
FORMULA
A(n,k) = binomial(n*k,k) = A007318(n*k,k) = A060538(n,k)/A060538(n-1,k).
EXAMPLE
Square array A(n,k) begins:
1, 1, 1, 1, 1, 1, 1, ...
2, 6, 20, 70, 252, 924, 3432, ...
3, 15, 84, 495, 3003, 18564, 116280, ...
4, 28, 220, 1820, 15504, 134596, 1184040, ...
5, 45, 455, 4845, 53130, 593775, 6724520, ...
6, 66, 816, 10626, 142506, 1947792, 26978328, ...
7, 91, 1330, 20475, 324632, 5245786, 85900584, ...
MAPLE
A:= (n, k)-> binomial(n*k, k):
seq(seq(A(n, 1+d-n), n=1..d), d=1..10); # Alois P. Heinz, Jul 28 2023
PROG
(PARI) { i=0; for (m=1, 20, for (n=1, m, k=m - n + 1; write("b060539.txt", i++, " ", binomial(n*k, k))); ) } \\ Harry J. Smith, Jul 06 2009
CROSSREFS
Columns include A000027, A000384, A006566, A060541.
Main diagonal is A014062.
Cf. A295772.
Sequence in context: A092392 A128741 A175757 * A163269 A103905 A270967
KEYWORD
nonn,tabl
AUTHOR
Henry Bottomley, Apr 02 2001
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 25 06:14 EDT 2024. Contains 371964 sequences. (Running on oeis4.)