cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-4 of 4 results.

A361216 Triangle read by rows: T(n,k) is the maximum number of ways in which a set of integer-sided rectangular pieces can tile an n X k rectangle.

Original entry on oeis.org

1, 1, 4, 2, 11, 56, 3, 29, 370, 5752, 4, 94, 2666, 82310, 2519124, 6, 263, 19126, 1232770, 88117873, 6126859968, 12, 968, 134902, 19119198, 2835424200
Offset: 1

Views

Author

Pontus von Brömssen, Mar 05 2023

Keywords

Comments

Tilings that are rotations or reflections of each other are considered distinct.
Pieces can have any combination of integer side lengths, but for the optimal sets computed so far (up to (n,k) = (7,5)), all pieces have one side of length 1.

Examples

			Triangle begins:
  n\k|  1    2       3         4            5          6  7  8
  ---+--------------------------------------------------------
  1  |  1
  2  |  1    4
  3  |  2   11      56
  4  |  3   29     370      5752
  5  |  4   94    2666     82310      2519124
  6  |  6  263   19126   1232770     88117873 6126859968
  7  | 12  968  134902  19119198   2835424200          ?  ?
  8  | 20 3416 1026667 307914196 109979838540          ?  ?  ?
A 3 X 3 square can be tiled by three 1 X 2 pieces and three 1 X 1 pieces in the following ways:
  +---+---+---+   +---+---+---+   +---+---+---+
  |   |   |   |   |   |   |   |   |   |   |   |
  +---+---+---+   +   +---+---+   +---+   +---+
  |       |   |   |   |   |   |   |   |   |   |
  +---+---+   +   +---+---+   +   +---+---+   +
  |       |   |   |       |   |   |       |   |
  +---+---+---+   +---+---+---+   +---+---+---+
.
  +---+---+---+   +---+---+---+   +---+---+---+
  |       |   |   |   |   |   |   |   |       |
  +---+---+---+   +---+---+   +   +---+---+---+
  |   |   |   |   |       |   |   |       |   |
  +---+---+   +   +---+---+---+   +---+---+---+
  |       |   |   |       |   |   |       |   |
  +---+---+---+   +---+---+---+   +---+---+---+
.
  +---+---+---+   +---+---+---+
  |       |   |   |       |   |
  +---+---+---+   +---+---+---+
  |       |   |   |   |       |
  +---+---+---+   +---+---+---+
  |       |   |   |       |   |
  +---+---+---+   +---+---+---+
The first six of these have no symmetries, so they account for 8 tilings each. The last two has a mirror symmetry, so they account for 4 tilings each. In total there are 6*8+2*4 = 56 tilings. This is the maximum for a 3 X 3 square, so T(3,3) = 56.
The following table shows the sets of pieces that give the maximum number of tilings up to (n,k) = (7,5). The solutions are unique except for (n,k) = (2,1) and (n,k) = (6,1).
      \     Number of pieces of size
  (n,k)\  1 X 1 | 1 X 2 | 1 X 3 | 1 X 4
  ------+-------+-------+-------+------
  (1,1) |   1   |   0   |   0   |   0
  (2,1) |   2   |   0   |   0   |   0
  (2,1) |   0   |   1   |   0   |   0
  (2,2) |   2   |   1   |   0   |   0
  (3,1) |   1   |   1   |   0   |   0
  (3,2) |   2   |   2   |   0   |   0
  (3,3) |   3   |   3   |   0   |   0
  (4,1) |   2   |   1   |   0   |   0
  (4,2) |   4   |   2   |   0   |   0
  (4,3) |   3   |   3   |   1   |   0
  (4,4) |   5   |   4   |   1   |   0
  (5,1) |   3   |   1   |   0   |   0
  (5,2) |   4   |   3   |   0   |   0
  (5,3) |   4   |   4   |   1   |   0
  (5,4) |   7   |   5   |   1   |   0
  (5,5) |   7   |   6   |   2   |   0
  (6,1) |   2   |   2   |   0   |   0
  (6,1) |   1   |   1   |   1   |   0
  (6,2) |   4   |   4   |   0   |   0
  (6,3) |   7   |   4   |   1   |   0
  (6,4) |   8   |   5   |   2   |   0
  (6,5) |  10   |   7   |   2   |   0
  (6,6) |  11   |   8   |   3   |   0
  (7,1) |   2   |   1   |   1   |   0
  (7,2) |   5   |   3   |   1   |   0
  (7,3) |   8   |   5   |   1   |   0
  (7,4) |  10   |   6   |   2   |   0
  (7,5) |  11   |   7   |   2   |   1
		

Crossrefs

Main diagonal: A361217.
Columns: A102462 (k = 1), A361218 (k = 2), A361219 (k = 3), A361220 (k = 4).

Formula

T(n,1) = A102462(n).

A361225 Maximum number of ways in which a set of integer-sided rectangular pieces can tile an n X 3 rectangle, up to rotations and reflections.

Original entry on oeis.org

1, 5, 8, 95, 682, 4801, 33807
Offset: 1

Views

Author

Pontus von Brömssen, Mar 05 2023

Keywords

Examples

			The following table shows the sets of pieces that give the maximum number of tilings for n <= 7. The solutions are unique except for n = 1 and n = 3.
   \ Number of pieces of size
  n \  1 X 1 | 1 X 2 | 1 X 3
  ---+-------+-------+------
  1  |   3   |   0   |   0
  1  |   1   |   1   |   0
  1  |   0   |   0   |   1
  2  |   2   |   2   |   0
  3  |   3   |   3   |   0
  3  |   2   |   2   |   1
  4  |   3   |   3   |   1
  5  |   4   |   4   |   1
  6  |   7   |   4   |   1
  7  |   8   |   5   |   1
It seems that all optimal solutions for A361219 are also optimal here, but for n = 1 and n = 3 there are other optimal solutions.
		

Crossrefs

Third column of A361221.

A362144 Maximum number of ways in which a set of integer-sided squares can tile an n X 3 rectangle.

Original entry on oeis.org

1, 1, 2, 4, 6, 12, 24, 40, 80, 160, 280, 560, 1120, 2240, 4480, 10080, 20160, 40320, 88704, 177408, 354816, 768768, 1537536, 3075072, 6589440, 13178880, 26357760, 56010240, 112020480, 224040960, 504092160, 1064194560, 2128389120, 4729753600, 9932482560
Offset: 0

Views

Author

Pontus von Brömssen, Apr 10 2023

Keywords

Crossrefs

Third column of A362142.
Cf. A002478, A361219 (rectangular pieces).

Formula

a(n) = max_{3*i+2*j<=n} C(i,j,n-3*i-2*j)*2^j, where C(i,j,k) is the trinomial coefficient (i+j+k)!/(i!*j!*k!). (i and j correspond to the number of squares of side lengths 3 and 2, respectively.)

A361427 Maximum difficulty level (see A361424 for the definition) for tiling an n X 3 rectangle with a set of integer-sided rectangles, rounded down to the nearest integer.

Original entry on oeis.org

2, 6, 8, 48, 80, 480, 960, 1920, 3360, 13440, 20160, 60480, 80640, 201600, 967680, 1612800
Offset: 1

Views

Author

Pontus von Brömssen, Mar 11 2023

Keywords

Comments

For all currently known terms, the maximum difficulty level is an integer.

Examples

			The following table shows all sets of pieces that give the maximum (n,3)-tiling difficulty level up to n = 16.
    \               Number of pieces of size
   n \ 1X1|1X2|1X3|1X4|1X5|1X6|1X7|1X8|1X9|1X10|1X12|2X2|2X3|2X4|2X5
  ----+---+---+---+---+---+---+---+---+---+----+----+---+---+---+---
   1  | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0  | 0  | 0 | 0 | 0 | 0
   1  | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0  | 0  | 0 | 0 | 0 | 0
   2  | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0  | 0  | 0 | 0 | 0 | 0
   3  | 1 | 1 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0  | 0  | 0 | 0 | 0 | 0
   4  | 0 | 1 | 2 | 1 | 0 | 0 | 0 | 0 | 0 | 0  | 0  | 0 | 0 | 0 | 0
   5  | 0 | 3 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0  | 0  | 0 | 0 | 0 | 0
   5  | 0 | 1 | 3 | 1 | 0 | 0 | 0 | 0 | 0 | 0  | 0  | 0 | 0 | 0 | 0
   6  | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0  | 0  | 1 | 0 | 0 | 0
   7  | 0 | 3 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0  | 0  | 1 | 0 | 0 | 0
   7  | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0  | 0  | 0 | 1 | 0 | 0
   8  | 0 | 3 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0  | 0  | 0 | 1 | 0 | 0
   9  | 4 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0  | 0  | 1 | 1 | 0 | 0
   9  | 2 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0  | 0  | 1 | 1 | 0 | 0
   9  | 0 | 4 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0  | 0  | 1 | 0 | 0 | 0
   9  | 0 | 3 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0  | 0  | 2 | 0 | 0 | 0
  10  | 3 | 0 | 0 | 2 | 1 | 0 | 0 | 0 | 0 | 0  | 0  | 1 | 0 | 0 | 1
  11  | 0 | 2 | 0 | 2 | 1 | 0 | 0 | 0 | 0 | 1  | 0  | 0 | 1 | 0 | 0
  12  | 3 | 0 | 0 | 2 | 0 | 0 | 1 | 0 | 0 | 0  | 0  | 2 | 0 | 0 | 1
  13  | 1 | 0 | 1 | 2 | 1 | 0 | 0 | 0 | 0 | 0  | 0  | 1 | 0 | 1 | 1
  13  | 0 | 2 | 0 | 2 | 1 | 0 | 0 | 0 | 0 | 0  | 1  | 1 | 1 | 0 | 0
  14  | 4 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0  | 0  | 1 | 0 | 2 | 0
  14  | 3 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 1 | 0  | 0  | 3 | 0 | 0 | 1
  14  | 2 | 0 | 0 | 2 | 4 | 0 | 0 | 0 | 0 | 0  | 0  | 1 | 0 | 1 | 0
  15  | 1 | 0 | 0 | 3 | 2 | 1 | 0 | 0 | 0 | 0  | 0  | 0 | 1 | 0 | 1
  16  | 3 | 0 | 0 | 2 | 1 | 1 | 0 | 0 | 0 | 0  | 0  | 0 | 0 | 2 | 1
		

Crossrefs

Third column of A361424.
Showing 1-4 of 4 results.