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!)
A059674 Square array a(m,n) = binomial(max(m,n), min(m,n)) (m>=0, n>=0) read by antidiagonals. 2
1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 3, 1, 3, 1, 1, 4, 3, 3, 4, 1, 1, 5, 6, 1, 6, 5, 1, 1, 6, 10, 4, 4, 10, 6, 1, 1, 7, 15, 10, 1, 10, 15, 7, 1, 1, 8, 21, 20, 5, 5, 20, 21, 8, 1, 1, 9, 28, 35, 15, 1, 15, 35, 28, 9, 1, 1, 10, 36, 56, 35, 6, 6, 35, 56, 36, 10, 1, 1, 11, 45, 84, 70, 21, 1, 21, 70, 84 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,8
LINKS
FORMULA
Square array equals A007318 + transpose(A007318) - I, where I denotes the infinite identity matrix. - Peter Bala, Aug 11 2015
EXAMPLE
a(2,4) = binomial(max(2,4), min(2,4)) = binomial(4,2) = 6.
Square begins:
1 1 1 1 1 1 ...
1 1 2 3 4 5 ...
1 2 1 3 6 10...
1 3 3 1 4 10 ...
MATHEMATICA
a[m_, n_] := If[m >= n, Binomial[m, n], Binomial[n, m]]; Table[a[m-n, n], {m, 0, 12}, {n, 0, m}] // Flatten (* Jean-François Alcover, Oct 10 2012 *)
CROSSREFS
Cf. A007318.
Sequence in context: A184305 A337279 A157522 * A367624 A342748 A117545
KEYWORD
easy,nice,nonn,tabl
AUTHOR
Fabian Rothelius, Feb 05 2001
EXTENSIONS
More terms from Larry Reeves (larryr(AT)acm.org), Feb 06 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 27 23:22 EDT 2024. Contains 372020 sequences. (Running on oeis4.)