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!)
A130194 Let M = lower triangular matrix with 1's on and below the main diagonal, with columns multiplied by +1, +1, -1, -1, repeated; form M^2; read across rows of resulting triangle. 1
1, 2, 1, -1, 2, 1, -4, -1, 2, 1, 1, -4, -1, 2, 1, 6, 1, -4, -1, 2, 1, -1, 6, 1, -4, -1, 2, 1, -8, -1, 6, 1, -4, -1, 2, 1, 1, -8, -1, 6, 1, -4, -1, 2, 1, 10, 1, -8, -1, 6, 1, -4, -1, 2, 1, -1, 10, 1, -8, -1, 6, 1, -4, -1, 2, 1, -12, -1, 10, 1, -8, -1, 6, 1, -4, -1, 2, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
A000012(signed)^2.
Left border = A009531: (1, 2, -1, -4, 1, 6, -1, ...).
Row sums = A130195: (1, 3, 2, -2, -1, 5, 4, ...).
Row sums of the unsigned triangle = A058074: (1, 3, 4, 8, 9, 15, ...).
A009531 in every column: (1, 2, -1, -4, 1, 6, -1, ...).
LINKS
EXAMPLE
First few rows of the triangle:
1;
2, 1;
-1, 2, 1;
-4, -1, 2, 1;
1, -4, -1, 2, 1;
6, 1, -4, -1, 2, 1;
...
PROG
(PARI) trg(nn) = {vgf = x*(1+x)^2/(1+x^2)^2 + O(x^(nn+1)); m = matrix(nn, nn, i, j, if (i >= j, polcoeff(vgf, i-j+1))); for (n=1, nn, for (k=1, n, print1(m[n, k], ", "); ); print(); ); } \\ Michel Marcus, Oct 03 2014
CROSSREFS
Sequence in context: A272620 A304080 A137843 * A113926 A276376 A165585
KEYWORD
tabl,sign
AUTHOR
Gary W. Adamson, May 16 2007
EXTENSIONS
More terms from Michel Marcus, Oct 03 2014
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 8 18:04 EDT 2024. Contains 372340 sequences. (Running on oeis4.)