A360629
Triangle read by rows: T(n,k) is the number of sets of integer-sided rectangular pieces that can tile an n X k rectangle, 1 <= k <= n.
Original entry on oeis.org
1, 2, 4, 3, 10, 21, 5, 22, 73, 192, 7, 44, 190, 703, 2035, 11, 91, 510, 2287, 8581, 27407, 15, 172, 1196, 6738, 30209, 118461, 399618, 22, 326, 2895, 19160, 102092, 462114
Offset: 1
Triangle begins:
n\k| 1 2 3 4 5 6 7
---+--------------------------------------
1 | 1
2 | 2 4
3 | 3 10 21
4 | 5 22 73 192
5 | 7 44 190 703 2035
6 | 11 91 510 2287 8581 27407
7 | 15 172 1196 6738 30209 118461 399618
...
T(2,2) = 4, because a 2 X 2 rectangle can be tiled by: one 2 X 2 piece; two 1 X 2 pieces; one 1 X 2 piece and two 1 X 1 pieces; four 1 X 1 pieces.
The T(3,2) = 10 sets of pieces that can tile a 3 X 2 rectangle are shown in the table below. (Each column on the right gives a set of pieces.)
length X width | number of pieces
---------------+--------------------
2 X 3 | 1 0 0 0 0 0 0 0 0 0
2 X 2 | 0 1 1 0 0 0 0 0 0 0
1 X 3 | 0 0 0 2 1 1 0 0 0 0
1 X 2 | 0 1 0 0 1 0 3 2 1 0
1 X 1 | 0 0 2 0 1 3 0 2 4 6
T(7,7) and T(8,k) for k = 1..6 added by
Robin Visser, May 09 2025
A361217
Maximum number of ways in which a set of integer-sided rectangular pieces can tile an n X n square.
Original entry on oeis.org
1, 4, 56, 5752, 2519124, 6126859968
Offset: 1
A361222
Maximum number of ways in which a set of integer-sided rectangular pieces can tile an n X n square, up to rotations and reflections.
Original entry on oeis.org
1, 1, 8, 719, 315107
Offset: 1
A361524
Number of ways of dividing an n X n square into integer-sided rectangles, up to rotations and reflections.
Original entry on oeis.org
1, 1, 4, 54, 9235, 10538496, 66906507915, 2262572656817797, 406359897582963166777, 387240433077951047222490766, 1957233446631303872408683778546809, 52459774417987065589052845904624173777442, 7455958280198359250316552005822713102696893557376
Offset: 0
A361002
Number of tilings of an n X n square by integer-sided rectangular pieces that cannot be rearranged to produce a different tiling of the square (except rotations and reflections of the original tiling).
Original entry on oeis.org
1, 4, 9, 23, 41
Offset: 1
A361425
Maximum difficulty level (see A361424 for the definition) for tiling an n X n square with a set of integer-sided rectangles, rounded down to the nearest integer.
Original entry on oeis.org
1, 2, 8, 80, 1152, 53760
Offset: 1
A363381
a(n) is the number of distinct n-cell patterns that tile an n X n square.
Original entry on oeis.org
1, 2, 1, 60, 1, 102, 1, 62714
Offset: 1
For n = 1, there is one 1-cell pattern because there is only one unit square to paint.
For n = 2, there are two 2-cell patterns:
+---+---+ +---+---+ +---+
| 1 | 2 | | 1 | 2 | | 1 |
+---+---+ +---+---+ and +---+---+
| 3 | 4 | | 4 |
+---+---+ +---+
For n = 3, there is one 3-cell pattern:
+---+---+---+
| 1 | 2 | 3 |
+---+---+---+
| 4 | 5 | 6 | It is +---+---+---+
+---+---+---+ | 1 | 2 | 3 |
| 7 | 8 | 9 | +---+---+---+
+---+---+---+
For n = 4, there are sixty 4-cell patterns:
+---+---+---+---+
| 1 | 2 | 3 | 4 | One is +---+---+---+---+
+---+---+---+---+ | 1 | 2 | 3 | 4 |
| 5 | 6 | 7 | 8 | +---+---+---+---+
+---+---+---+---+
| 9 |10 |11 |12 | which is equivalent to:
+---+---+---+---+ +---+
|13 |14 |15 |16 | | 1 |
+---+---+---+---+ +---+
| 5 |
+---+
and therefore these two are not | 9 |
counted as distinct patterns. +---+
|13 |
+---+
Another 4-cell pattern for a 4 X 4 square
+---+---+---+---+
| x | x | y | y |
+---+---+---+---+ is
| z | y | x | a | +---+---+
+---+---+---+---+ | x | x |
| y | z | a | x | +---+---+---+
+---+---+---+---+ | x |
| a | a | z | z | +---+---+
+---+---+---+---+ | x |
+---+
+---+---+
| x | x |
+---+---+---+ is equivalent to
| x |
+---+---+
| x |
+---+
+---+---+ +---+ +---+
| y | y | | z | | a |
+---+---+---+ +---+---+ +---+---+
| y | | z | | a |
+---+---+ +---+---+---+ +---+---+---+
| y | | z | z | | a | a |
+---+ +---+---+ +---+---+
because the shapes can be created through reflection, rotation, or translation.
Therefore, they are counted as one pattern.
For n = 5, there is one 5-cell pattern.
Showing 1-7 of 7 results.
Comments