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!)
A165257 Triangle in which n-th row is binomial(n+k-1,k), for column k=1..n. 3
1, 2, 3, 3, 6, 10, 4, 10, 20, 35, 5, 15, 35, 70, 126, 6, 21, 56, 126, 252, 462, 7, 28, 84, 210, 462, 924, 1716, 8, 36, 120, 330, 792, 1716, 3432, 6435, 9, 45, 165, 495, 1287, 3003, 6435, 12870, 24310 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
1;
2, 3;
3, 6, 10;
4, 10, 20, 35;
5, 15, 35, 70, 126;
6, 21, 56, 126, 252, 462;
7, 28, 84, 210, 462, 924, 1716;
MATHEMATICA
Table[Binomial[n+k-1, k], {n, 10}, {k, n}]//Flatten (* Harvey P. Dale, Jul 31 2021 *)
PROG
(PARI) tabl(nn) = {for (n=1, nn, for (k=1, n, print1( binomial(n+k-1, k), ", "); ); print(); ); } \\ Michel Marcus, Jun 12 2013
CROSSREFS
A059481 with the first column (k = 0) removed.
Cf. A030662 (row sums), A001700 (diagonal).
Sequence in context: A320002 A129068 A079888 * A368223 A059191 A124063
KEYWORD
easy,nonn,tabl
AUTHOR
Daniel McLaury (daniel.mclaury(AT)gmail.com), Sep 11 2009
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 23 23:26 EDT 2024. Contains 371917 sequences. (Running on oeis4.)