cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A039800 Column 1 of Inverse partition triangle A038498.

Original entry on oeis.org

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
Offset: 1

Views

Author

Christian G. Bower, Feb 15 1999

Keywords

Crossrefs

Programs

  • 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

Extensions

a(60) onward corrected by Sean A. Irvine, Feb 26 2021

A039804 Column 5 of Inverse partition triangle A038498.

Original entry on oeis.org

1, -1, -1, 0, 0, 1, 1, 2, 0, 0, -1, -1, -2, -2, -2, -4, -1, -2, 0, 0, 3, 4, 6, 6, 8, 8, 10, 10, 9, 9, 7, 5, 2, 0, -7, -10, -18, -22, -29, -32, -41, -43, -49, -50, -54, -53, -54, -50, -46, -38, -30, -18, -6, 8, 25, 43, 62, 82, 108, 128, 155
Offset: 5

Views

Author

Christian G. Bower, Feb 15 1999

Keywords

Crossrefs

Extensions

a(64) corrected by Sean A. Irvine, Feb 27 2021
Showing 1-2 of 2 results.