A360998 Triangle read by rows: T(n,k) is the number of tilings of an n X k rectangle by integer-sided rectangular pieces that cannot be rearranged to produce a different tiling of the rectangle (including rotations and reflections of the original tiling), 1 <= k <= n.
1, 2, 2, 2, 3, 2, 3, 4, 4, 3, 2, 3, 3, 4, 2, 4, 6, 5, 7, 5, 4
Offset: 1
Examples
Triangle begins: n\k| 1 2 3 4 5 6 ---+------------------ 1 | 1 2 | 2 2 3 | 2 3 2 4 | 3 4 4 3 5 | 2 3 3 4 2 6 | 4 6 5 7 5 4 The T(4,3) = 4 nonrearrangeable tilings of the 4 X 3 rectangle are: +---+---+---+ +---+---+---+ +---+---+---+ +---+---+---+ | | | | | | | | | | | | + + + + + + + + +---+---+---+ | | | | | | | | | | | | + + +---+---+---+ + + + + +---+---+---+ | | | | | | | | | | | | + + + + + + + + +---+---+---+ | | | | | | | | | | | | +---+---+---+ +---+---+---+ +---+---+---+ +---+---+---+
Comments