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.

A233292 Triangle read by rows: T(n,k) is the number of partitions of n into at most four parts in which no part exceeds k, 0 <= k <= n.

Original entry on oeis.org

1, 0, 1, 0, 1, 2, 0, 1, 2, 3, 0, 1, 3, 4, 5, 0, 0, 2, 4, 5, 6, 0, 0, 2, 5, 7, 8, 9, 0, 0, 1, 4, 7, 9, 10, 11, 0, 0, 1, 4, 8, 11, 13, 14, 15, 0, 0, 0, 3, 7, 11, 14, 16, 17, 18, 0, 0, 0, 2, 7, 12, 16, 19, 21, 22, 23, 0, 0, 0, 1, 5, 11, 16, 20, 23, 25, 26, 27, 0, 0, 0, 1, 5, 11, 18, 23, 27, 30, 32, 33, 34
Offset: 0

Views

Author

L. Edson Jeffery, Jan 02 2014

Keywords

Comments

Transpose of table A219237.

Examples

			Triangle T(n,k) begins:
1;
0, 1;
0, 1, 2;
0, 1, 2, 3;
0, 1, 3, 4, 5;
0, 0, 2, 4, 5,  6;
0, 0, 2, 5, 7,  8,  9;
0, 0, 1, 4, 7,  9, 10, 11;
0, 0, 1, 4, 8, 11, 13, 14, 15; ...
		

Crossrefs

Cf. A001400 (main diagonal), A219237, A232539.

Formula

T(n,k) = Sum_{j=0..k} A232539(n,j).