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!)
A038498 Matrix inverse of partition triangle A008284. 24
1, -1, 1, 0, -1, 1, 1, -1, -1, 1, 0, 1, -1, -1, 1, 0, 1, 0, -1, -1, 1, -1, 1, 1, 0, -1, -1, 1, -1, 0, 2, 0, 0, -1, -1, 1, 0, -1, 0, 2, 0, 0, -1, -1, 1, 0, -2, 1, 1, 1, 0, 0, -1, -1, 1, 1, -2, -1, 1, 1, 1, 0, 0, -1, -1, 1, 1, -1, -2, 0, 2, 0, 1, 0, 0, -1, -1, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,31
COMMENTS
Since A008284 has only ones in its first column, the sum of terms for any row n > 1 is 0. - François Marques, Feb 09 2021
LINKS
FORMULA
T(n,n-k) = A010815(k) for k <= n/2. - François Marques, Feb 09 2021
EXAMPLE
Triangle begins:
1;
-1,1;
0,-1,1;
1,-1,-1,1;
...
PROG
(PARI) tp(n, k) = if (n<1, 0, if (k<1, 0, if (k == n, 1, if (k > n, 0, tp(n-1, k-1) + tp(n-k, k)))));
tabl(nn) = {mtp = matrix(nn, nn, n, k, tp(n, k)); mtpi = mtp^(-1); for (n = 1, nn, for (k = 1, n, print1(mtpi[n, k], ", "); ); print(); ); } \\ Michel Marcus, Mar 04 2014
CROSSREFS
Sequence in context: A369461 A114643 A369055 * A361984 A319510 A257217
KEYWORD
sign,tabl
AUTHOR
Christian G. Bower, Feb 15 1999
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 29 06:50 EDT 2024. Contains 372097 sequences. (Running on oeis4.)