A238943 Triangular array read by rows: t(n,k) = size of the Ferrers matrix of p(n,k).
1, 2, 2, 3, 2, 3, 4, 3, 2, 3, 4, 5, 4, 3, 3, 3, 4, 5, 6, 5, 4, 4, 3, 3, 4, 3, 4, 5, 6, 7, 6, 5, 5, 4, 4, 4, 3, 3, 4, 5, 4, 5, 6, 7, 8, 7, 6, 6, 5, 5, 5, 4, 4, 4, 4, 5, 3, 4, 4, 5, 6, 4, 5, 6, 7, 8, 9, 8, 7, 7, 6, 6, 6, 5, 5, 5, 5, 5, 4, 4, 4, 4, 5, 6, 3, 4
Offset: 1
Examples
First 8 rows: 1 2 2 2 3 2 3 4 3 2 3 4 5 4 3 3 3 4 5 6 5 4 4 3 3 4 3 4 5 6 7 6 5 5 4 4 4 3 3 4 5 4 5 6 7 8 7 6 6 5 5 5 4 4 4 4 5 3 4 4 5 6 4 5 6 7 8 For n = 3, the three partitions are [3], [2,1], [1,1,1]. Their respective Ferrers matrices derive from Ferrers graphs as follows: The partition [3] has Ferrers graph 1 1 1, with Ferrers matrix of size 3: 1 1 1 0 0 0 0 0 0 The partition [2,1] has Ferrers graph 11 1 with Ferrers matrix of size 2: 1 1 1 0 The partition [1,1,1] has Ferrers graph 1 1 1 with Ferrers matrix of size 3 1 0 0 1 0 0 1 0 0 Thus row 3 is (3,2,3).
Programs
Formula
t(n,k) = max{max(p(n,k)), length(p(n,k))}, where p(n,k) is the k-th partition of n in Mathematica order.
Comments