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.

A027300 Triangular array Q given by rows: Q(n,k) = number of partitions of n that do not contain k as an element; domain: 1 <= k <= n, n >= 1.

Original entry on oeis.org

0, 1, 1, 1, 2, 2, 2, 3, 4, 4, 2, 4, 5, 6, 6, 4, 6, 8, 9, 10, 10, 4, 8, 10, 12, 13, 14, 14, 7, 11, 15, 17, 19, 20, 21, 21, 8, 15, 19, 23, 25, 27, 28, 29, 29, 12, 20, 27, 31, 35, 37, 39, 40, 41, 41, 14, 26, 34, 41, 45, 49, 51, 53, 54, 55, 55, 21, 35
Offset: 1

Views

Author

Keywords

Examples

			Triangle begins:
  0,
  1, 1,
  1, 2, 2,
  2, 3, 4, 4,
  2, 4, 5, 6, 6,
  ...
		

Crossrefs

Formula

Q(n, k) = P(n+1, 1) - P(n, k), P given by A027293.
Q(n, k) = A000041(n) - A000041(n - k). - Sean A. Irvine, Oct 26 2019