login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A177040 Irregular triangle t(n,m) = binomial(m+1,n-m) read by rows floor((n+1)/2) <= m <= n. 0
1, 1, 2, 1, 3, 1, 3, 4, 1, 6, 5, 1, 4, 10, 6, 1, 10, 15, 7, 1, 5, 20, 21, 8, 1, 15, 35, 28, 9, 1, 6, 35, 56, 36, 10, 1, 21, 70, 84, 45, 11, 1, 7, 56, 126, 120, 55, 12, 1, 28, 126, 210, 165, 66, 13, 1, 8, 84, 252, 330, 220, 78, 14, 1, 36, 210, 462, 495, 286, 91, 15, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET

0,3

COMMENTS

Row sums are in A052952.

Contains the right half of each row of A030528. - R. J. Mathar, May 19 2013

LINKS

Table of n, a(n) for n=0..71.

EXAMPLE

1;

1;

2, 1;

3, 1;

3, 4, 1;

6, 5, 1;

4, 10, 6, 1;

10, 15, 7, 1;

5, 20, 21, 8, 1;

15, 35, 28, 9, 1;

6, 35, 56, 36, 10, 1;

21, 70, 84, 45, 11, 1;

7, 56, 126, 120, 55, 12, 1;

28, 126, 210, 165, 66, 13, 1;

8, 84, 252, 330, 220, 78, 14, 1;

36, 210, 462, 495, 286, 91, 15, 1;

MATHEMATICA

t[n_, m_] := Binomial[m + 1, n - m];

Table[Table[t[n, m], {m, Floor[(n + 1)/2], n}], {n, 0, 15}];

Flatten[%]

PROG

(PARI) T(m, n)=binomial(n+1, m-n) \\ Charles R Greathouse IV, May 19 2013

CROSSREFS

Cf. A180987 (read diagonally downwards), A098925, A026729, A085478, A165253

Sequence in context: A081386 A213712 A143802 * A163313 A213594 A135591

Adjacent sequences:  A177037 A177038 A177039 * A177041 A177042 A177043

KEYWORD

nonn,tabf,easy

AUTHOR

Roger L. Bagula, May 01 2010

STATUS

approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified June 19 09:59 EDT 2013. Contains 226401 sequences.