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!)
A176484 Triangle t(n,m) read by rows: t(n,n)= 1, t(n,m) = (-1)^(n+m)*(m+1), 0<=m<n. 1
1, -1, 1, 1, -2, 1, -1, 2, -3, 1, 1, -2, 3, -4, 1, -1, 2, -3, 4, -5, 1, 1, -2, 3, -4, 5, -6, 1, -1, 2, -3, 4, -5, 6, -7, 1, 1, -2, 3, -4, 5, -6, 7, -8, 1, -1, 2, -3, 4, -5, 6, -7, 8, -9, 1, 1, -2, 3, -4, 5, -6, 7, -8, 9, -10, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Row sums are 1, 0, 0, -1, -1, -2, -2, -3, -3, -4, -4,..
Obtained from A144328 by deleting the first column, adding a diagonal of +1's, and multiplication with (-1)^(n-m).
LINKS
FORMULA
t(n,m) = [x^m] (x^n - sum_{j=1..n} (-1)^(j+(n mod 2)) *j*x^(j-1) ) .
EXAMPLE
1;
-1, 1;
1, -2, 1;
-1, 2, -3, 1;
1, -2, 3, -4, 1;
-1, 2, -3, 4, -5, 1;
1, -2, 3, -4, 5, -6, 1;
-1, 2, -3, 4, -5, 6, -7, 1;
1, -2, 3, -4, 5, -6, 7, -8, 1;
-1, 2, -3, 4, -5, 6, -7, 8, -9, 1;
1, -2, 3, -4, 5, -6, 7, -8, 9, -10, 1;
MATHEMATICA
p[x, 0] = 1;
p[x_, n_] := p[x, n] = x^n - Sum[(-1)^(i + Mod[n, 2])*i*x^(i - 1), {i, 1, n}];
Table[CoefficientList[p[x, n], x], {n, 0, 10}];
Flatten[%]
CROSSREFS
Sequence in context: A318288 A088426 A124769 * A144328 A128227 A306727
KEYWORD
sign,tabl,easy
AUTHOR
Roger L. Bagula, Apr 18 2010
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 May 3 10:32 EDT 2024. Contains 372207 sequences. (Running on oeis4.)