A286436 Irregular triangle read by rows: T(n, k) = number of ways to tile an n X n X n triangular area with k 2 X 2 X 2 triangular tiles and an appropriate number (= n^2-4*k) of 1 X 1 X 1 tiles.
1, 1, 1, 1, 3, 1, 7, 9, 4, 1, 1, 13, 48, 63, 25, 1, 21, 153, 494, 747, 546, 219, 57, 9, 1, 1, 31, 372, 2247, 7459, 14064, 15160, 9233, 3069, 480, 14, 1, 43, 765, 7396, 42983, 157248, 369787, 563287, 556932, 358974, 153520, 45282, 9634, 1529, 186, 16, 1, 1, 57, 1404
Offset: 1
Examples
The triangle begins with T(1, 0): 1; 1, 1; 1, 3; 1, 7, 9, 4, 1; 1, 13, 48, 63, 25; 1, 21, 153, 494, 747, 546, 219, 57, 9, 1; T(4, 3) = 4 because there are 4 ways to tile an area of size 4X4X4 with 3 tiles of size 2X2X2 and fill up the rest with tiles of size 1X1X1.
Links
- Heinrich Ludwig, Table of n, a(n) for n = 1..140
Comments