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!)
A177767 Triangle read by rows: T(n,k) = binomial(n - 1, k - 1), 1 <= k <= n, and T(n,0) = A153881(n+1), n >= 0. 0
1, -1, 1, -1, 1, 1, -1, 1, 2, 1, -1, 1, 3, 3, 1, -1, 1, 4, 6, 4, 1, -1, 1, 5, 10, 10, 5, 1, -1, 1, 6, 15, 20, 15, 6, 1, -1, 1, 7, 21, 35, 35, 21, 7, 1, -1, 1, 8, 28, 56, 70, 56, 28, 8, 1, -1, 1, 9, 36, 84, 126, 126, 84, 36, 9, 1, -1, 1, 10, 45, 120, 210, 252, 210, 120, 45, 10, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,9
COMMENTS
Row sums yield A000225 preceded by 1.
Except for signs, this is A135225.
LINKS
FORMULA
Row n = coefficients in the expansion of x*(1 + x)^(n - 1) - 1, n > 0.
From Franck Maminirina Ramaharo, Oct 23 2018: (Start)
G.f.: (1 - 3*y + (2 + x)*y^2)/(1 - (2 + x)*y + (1 + x)*y^2).
E.g.f.: (2 + x - (1 + x)*exp(y) + x*exp((1 + x)*y))/(1 + x). (End)
EXAMPLE
Triangle begins:
1;
-1, 1;
-1, 1, 1;
-1, 1, 2, 1;
-1, 1, 3, 3, 1;
-1, 1, 4, 6, 4, 1;
-1, 1, 5, 10, 10, 5, 1;
-1, 1, 6, 15, 20, 15, 6, 1;
-1, 1, 7, 21, 35, 35, 21, 7, 1;
-1, 1, 8, 28, 56, 70, 56, 28, 8, 1;
-1, 1, 9, 36, 84, 126, 126, 84, 36, 9, 1;
...
MATHEMATICA
Flatten[Table[If[n == 0, {1}, CoefficientList[x*(1 + x)^( n - 1) - 1, x]], {n, 0, 10}]]
PROG
(Maxima)
T(n, k) := if k = 0 then 2*floor(1/(n + 1)) - 1 else binomial(n - 1, k - 1)$
create_list(T(n, k), n, 0, 12, k, 0, n); /* Franck Maminirina Ramaharo, Oct 23 2018 */
CROSSREFS
Sequence in context: A297299 A135225 A208891 * A047030 A047120 A096751
KEYWORD
sign,tabl,easy
AUTHOR
Roger L. Bagula, May 13 2010
EXTENSIONS
Edited and new name by Franck Maminirina Ramaharo, Oct 23 2018
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 18 20:26 EDT 2024. Contains 371781 sequences. (Running on oeis4.)