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!)
A168577 Pascal's triangle, first two columns and diagonal removed. 0
3, 6, 4, 10, 10, 5, 15, 20, 15, 6, 21, 35, 35, 21, 7, 28, 56, 70, 56, 28, 8, 36, 84, 126, 126, 84, 36, 9, 45, 120, 210, 252, 210, 120, 45, 10, 55, 165, 330, 462, 462, 330, 165, 55, 11, 66, 220, 495, 792, 924, 792, 495, 220, 66, 12, 78, 286, 715, 1287, 1716, 1716, 1287 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
2,1
COMMENTS
Row sums are 3, 10, 25, 56, 119, 246, .. (A000247).
LINKS
FORMULA
T(n,k)= [x^k] ((x + 1)^n - x^n - n*x - 1), 2<=k<n.
T(n,k) = binomial(n,k).
EXAMPLE
3;
6, 4;
10, 10, 5;
15, 20, 15, 6;
21, 35, 35, 21, 7;
28, 56, 70, 56, 28, 8;
36, 84, 126, 126, 84, 36, 9;
45, 120, 210, 252, 210, 120, 45, 10;
55, 165, 330, 462, 462, 330, 165, 55, 11;
66, 220, 495, 792, 924, 792, 495, 220, 66, 12;
78, 286, 715, 1287, 1716, 1716, 1287, 715, 286, 78, 13;
MATHEMATICA
p[x_, n_] = ((x + 1)^n - x^n - n*x - 1)/x^2;
Table[CoefficientList[p[x, n], x], {n, 3, 13}];
Flatten[%]
CROSSREFS
Sequence in context: A294671 A275985 A163294 * A122634 A169846 A169854
KEYWORD
nonn,easy,tabl
AUTHOR
Roger L. Bagula, Nov 30 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 24 03:08 EDT 2024. Contains 371918 sequences. (Running on oeis4.)