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.

A274109 Triangle read by rows: T(n,k) = number of partitions of n into exactly k parts with exactly two different sizes, the sizes being relatively prime (n >= 3, 2 <= k <= n-1).

Original entry on oeis.org

1, 1, 1, 2, 2, 1, 1, 1, 2, 1, 3, 3, 2, 2, 1, 2, 2, 2, 2, 2, 1, 3, 3, 2, 3, 2, 2, 1, 2, 2, 4, 1, 3, 2, 2, 1, 5, 5, 3, 4, 2, 3, 2, 2, 1, 2, 2, 2, 2, 3, 2, 3, 2, 2, 1, 6, 6, 4, 5, 2, 4, 2, 3, 2, 2, 1, 3, 3, 5, 3, 4, 1, 4, 2, 3, 2, 2, 1, 4, 4, 3, 3, 4, 4, 2, 4, 2, 3, 2, 2, 1, 4, 4, 5, 3, 4, 3, 3, 2, 4, 2, 3, 2, 2, 1, 8, 8, 5, 7, 3, 5, 3, 4, 2, 4, 2, 3, 2, 2, 1, 3, 3, 5, 2, 5, 2, 4, 2, 4, 2, 4, 2, 3, 2, 2, 1, 9, 9, 6, 7, 3, 7, 3, 4, 3, 4, 2, 4, 2, 3, 2, 2, 1
Offset: 3

Views

Author

N. J. A. Sloane, Jun 17 2016

Keywords

Examples

			Triangle T(n,k) (with columns n >= 3 and k >= 2) begins as follows:
  1;
  1, 1;
  2, 2, 1;
  1, 1, 2, 1;
  3, 3, 2, 2, 1;
  2, 2, 2, 2, 2, 1;
  3, 3, 2, 3, 2, 2, 1;
  2, 2, 4, 1, 3, 2, 2, 1;
  5, 5, 3, 4, 2, 3, 2, 2, 1;
  2, 2, 2, 2, 3, 2, 3, 2, 2, 1;
  6, 6, 4, 5, 2, 4, 2, 3, 2, 2, 1;
  3, 3, 5, 3, 4, 1, 4, 2, 3, 2, 2, 1;
  4, 4, 3, 3, 4, 4, 2, 4, 2, 3, 2, 2, 1;
  ...
		

Crossrefs

Row sums give A274108.