A361424 Triangle read by rows: T(n,k) is the maximum of a certain measure of the difficulty level (see comments) for tiling an n X k rectangle with a set of integer-sided rectangular pieces, rounded down to the nearest integer.
1, 2, 2, 2, 6, 8, 4, 12, 48, 80, 4, 16, 80, 480, 1152, 8, 48, 480, 2880, 20160, 53760, 8, 53, 960, 13440, 107520
Offset: 1
Examples
Triangle begins: n\k| 1 2 3 4 5 6 7 8 ---+-------------------------------------- 1 | 1 2 | 2 2 3 | 2 6 8 4 | 4 12 48 80 5 | 4 16 80 480 1152 6 | 8 48 480 2880 20160 53760 7 | 8 53 960 13440 107520 ? ? 8 | 16 120 1920 53760 483840 ? ? ? For (n,k) = (7,3), the set consisting of three 1 X 2 pieces, one 1 X 5 piece, one 1 X 6 piece, and one 2 X 2 piece gives the maximum difficulty level, which equals C(6;3,1,1,1)*2^5/4 = 120*32/4 = 960 = T(7,3). The 4 in the denominator is the number of ways in which this set of pieces can tile the 7 X 3 rectangle (all 4 are equivalent under rotations and reflections). The following table shows all sets of pieces that give the maximum (n,k)-tiling difficulty level up to (n,k) = (7,5). \ Number of pieces of size (n,k)\ 1X1 | 1X2 | 1X3 | 1X4 | 1X5 | 1X6 | 1X7 | 2X2 | 2X3 ------+-----+-----+-----+-----+-----+-----+-----+-----+---- (1,1) | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 (2,1) | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 (2,2) | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 (3,1) | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 (3,1) | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 (3,2) | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 (3,3) | 1 | 1 | 2 | 0 | 0 | 0 | 0 | 0 | 0 (4,1) | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 (4,2) | 0 | 2 | 0 | 1 | 0 | 0 | 0 | 0 | 0 (4,2) | 0 | 1 | 2 | 0 | 0 | 0 | 0 | 0 | 0 (4,3) | 0 | 1 | 2 | 1 | 0 | 0 | 0 | 0 | 0 (4,4) | 0 | 1 | 2 | 2 | 0 | 0 | 0 | 0 | 0 (5,1) | 1 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 (5,1) | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 (5,2) | 1 | 2 | 0 | 0 | 1 | 0 | 0 | 0 | 0 (5,2) | 0 | 3 | 0 | 1 | 0 | 0 | 0 | 0 | 0 (5,3) | 0 | 3 | 0 | 1 | 1 | 0 | 0 | 0 | 0 (5,3) | 0 | 1 | 3 | 1 | 0 | 0 | 0 | 0 | 0 (5,4) | 0 | 1 | 3 | 1 | 1 | 0 | 0 | 0 | 0 (5,5) | 1 | 0 | 8 | 0 | 0 | 0 | 0 | 0 | 0 (6,1) | 0 | 3 | 0 | 0 | 0 | 0 | 0 | 0 | 0 (6,2) | 0 | 1 | 2 | 1 | 0 | 0 | 0 | 0 | 0 (6,3) | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 1 | 0 (6,4) | 0 | 1 | 1 | 1 | 1 | 1 | 0 | 1 | 0 (6,4) | 0 | 0 | 2 | 2 | 2 | 0 | 0 | 0 | 0 (6,5) | 0 | 0 | 2 | 2 | 2 | 1 | 0 | 0 | 0 (6,6) | 0 | 0 | 2 | 2 | 2 | 2 | 0 | 0 | 0 (7,1) | 1 | 3 | 0 | 0 | 0 | 0 | 0 | 0 | 0 (7,1) | 0 | 2 | 1 | 0 | 0 | 0 | 0 | 0 | 0 (7,2) | 0 | 1 | 4 | 0 | 0 | 0 | 0 | 0 | 0 (7,3) | 0 | 3 | 0 | 0 | 1 | 1 | 0 | 1 | 0 (7,3) | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 (7,4) | 0 | 3 | 0 | 0 | 2 | 1 | 0 | 0 | 1 (7,4) | 0 | 0 | 3 | 2 | 1 | 1 | 0 | 0 | 0 (7,5) | 0 | 3 | 0 | 0 | 2 | 1 | 1 | 0 | 1 (7,5) | 0 | 0 | 3 | 2 | 1 | 1 | 1 | 0 | 0
Crossrefs
Formula
T(n,1) = A016116(n).
Comments