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!)
A039800 Column 1 of Inverse partition triangle A038498. 6
1, -1, 0, 1, 0, 0, -1, -1, 0, 0, 1, 1, 2, 2, 1, 0, -1, -2, -3, -4, -5, -5, -5, -4, -3, -1, 2, 5, 8, 11, 14, 17, 18, 20, 20, 20, 18, 16, 11, 8, 0, -6, -15, -23, -34, -43, -54, -63, -73, -81, -88, -95, -98, -101, -99, -99, -89, -86, -70, -60, -38, -24, 8, 25, 62 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,13
LINKS
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)))));
lista(nn) = {my(mtp = matrix(nn, nn, n, k, tp(n, k)), mtpi = mtp^(-1)); vector(nn, k, mtpi[k, 1]); } \\ Michel Marcus, Feb 27 2021
CROSSREFS
Sequence in context: A098884 A297964 A296239 * A309416 A251418 A172101
KEYWORD
sign
AUTHOR
Christian G. Bower, Feb 15 1999
EXTENSIONS
a(60) onward corrected by Sean A. Irvine, Feb 26 2021
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 09:47 EDT 2024. Contains 371779 sequences. (Running on oeis4.)