A291808 Number of tilings of an n X n square using distinct polyominoes.
1, 2, 44, 10066
Offset: 1
Links
- John Mason, Example tilings
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.
Example areas using the minimum number of line segments from n = 1 through n = 10 are: . __ |__| a(1) = 4 __ __ __ |__|__ __| a(2) = 9 __ __ __ |__|__ __| a(3) = 14 |__ __ __| __ __ __ |__|__ __| |__ __ __| a(4) = 20 | | |__ __| __ __ __ |__|__ __|__ |__ __ __| | a(5) = 26 | | | |__ __|__ __| __ __ __ |__|__ __|__ __ __ |__ __ __| | | a(6) = 33 | | | | |__ __|__ __|__ __| __ __ __ __ __ __|__ | |__|__ __|__ __ __| |__ __ __| | | a(7) = 40 | | | | |__ __|__ __|__ __| __ __ __ __ __ __ | | | |__ __ __ __| | | |__ __ __| a(8) = 47 |__ __ __|__ | | | | |__ __| |__ __|__|__ __|__| __ __ __ __ __ __ __ | | | | |__ __ __ __| |__ __ __|__ | |__|__ __|__ __ __| a(9) = 55 |__ __ __| | | | | | | |__ __|__ __|__ __| __ __ __ __ __ __ __ __ | __|__ | | |__ __ __| |__|__ | | | | |__| | | | | | a(10) = 63 |__ __ __|__ __|__ __|__| | | |__| |__ __ __ __ __|__ __| .
Examples of n = 1 to n = 10 are given below. Note that for a(3) the configuration could also consist of the area of size 1 sitting above the area of size 2 with the area of size 3 forming an L-shaped block creating the minimal 2 X 3 block. . __ |__| a(1) = 4 __ __ __ |__|__ __| a(2) = 9 __ __ __ |__|__ __| a(3) = 14 |__ __ __| __ __ __ |__|__ __| |__ __ __| a(4) = 20 | | |__ __| __ __ __ |__|__ __|__ |__ __ __| | a(5) = 26 | | | |__ __|__ __| __ __ __ |__|__ __|__ __ __ |__ __ __| | | a(6) = 33 | | | | |__ __|__ __|__ __| __ __ __ __ __ __|__ | |__|__ __|__ __ __| |__ __ __| | | a(7) = 40 | | | | |__ __|__ __|__ __| __ __ __ __ | | |__ __ __ __| __ __|__ | |__|__ __|__ __ __| a(8) = 48 |__ __ __| | | | | | | |__ __|__ __|__ __| __ __ __ __ __ __ __ | | | | |__ __ __ __| |__ __ __|__ | |__|__ __|__ __ __| a(9) = 55 |__ __ __| | | | | | | |__ __|__ __|__ __| __ __ __ __ __ __ __ | | | | |__ __ __ __| __|__ __ __|__ | | |__|__ __|__ __ __| a(10) = 64 | |__ __ __| | | | | | | | | |__ __|__ __|__ __| |__ __| .
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.
Comments