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!)
A136745 Irregular triangle T(0,0)=1, T(1,0)=-1, T(1,1)=0, T(1,2)=1 and T(n,k) = T(n-1,k-2)-T(n-2,k). 0
1, -1, 0, 1, -1, 0, -1, 0, 1, 1, 0, -2, 0, -1, 0, 1, 1, 0, 2, 0, -3, 0, -1, 0, 1, -1, 0, 3, 0, 3, 0, -4, 0, -1, 0, 1, -1, 0, -3, 0, 6, 0, 4, 0, -5, 0, -1, 0, 1, 1, 0, -4, 0, -6, 0, 10, 0, 5, 0, -6, 0, -1, 0, 1, 1, 0, 4, 0, -10, 0, -10, 0, 15, 0, 6, 0, -7, 0, -1, 0, 1, -1, 0, 5, 0, 10, 0, -20, 0, -15, 0, 21, 0, 7, 0, -8, 0, -1, 0, 1, -1, 0, -5, 0, 15, 0, 20, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,12
COMMENTS
Row sums are probably a repeating sequence 1, 0, -1, -1, 0, 1, 1, 0, -1, -1, 0,...
This is simply A130777 with columns of zeros inserted in odd-numbered columns. - R. J. Mathar, Nov 04 2011
LINKS
EXAMPLE
1;
-1, 0, 1;
-1, 0, -1, 0, 1;
1, 0, -2, 0, -1, 0, 1;
1, 0, 2, 0, -3, 0, -1, 0, 1;
-1, 0, 3, 0, 3, 0, -4, 0, -1, 0, 1;
-1, 0, -3, 0, 6, 0, 4, 0, -5, 0, -1, 0, 1;
1, 0, -4, 0, -6, 0, 10, 0, 5, 0, -6, 0, -1, 0,1;
1, 0, 4,0, -10, 0, -10, 0, 15, 0, 6, 0, -7, 0, -1, 0, 1;
-1, 0, 5, 0, 10, 0, -20, 0, -15, 0, 21, 0, 7, 0, -8, 0, -1, 0, 1;
-1, 0, -5, 0, 15, 0,20, 0, -35, 0, -21, 0, 28, 0, 8, 0, -9, 0, -1, 0, 1;
MATHEMATICA
Clear[p, x, n] p[x, 0] = 1; p[x, 1] = x^2 - 1; p[x_, n_] := p[x, n] = x^2*p[x, n - 1] - p[x, n - 2]; Table[ExpandAll[p[x, n]], {n, 0, 10}]; a = Table[CoefficientList[p[x, n], x], {n, 0, 10}]; Flatten[a] Table[Apply[Plus, CoefficientList[p[x, n], x]], {n, 0, 10}];
CROSSREFS
Cf. A130777.
Sequence in context: A236511 A235924 A097304 * A214157 A246720 A343030
KEYWORD
easy,tabf,sign
AUTHOR
Roger L. Bagula, Mar 19 2008
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 25 06:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)