A337415
a(n) is the number of ways to tile a size n triangle in the triangular grid with n n-cell polyiamonds, up to rotation and reflection of the triangle.
Original entry on oeis.org
1, 0, 1, 3, 11, 314
Offset: 1
An example of the a(4) = 3 essentially different ways of tiling a size 4 triangle with 4-iamonds can be found via the Code Golf Stack Exchange link.
A328020 is the analog for square on the square grid.
A347581
The Barnyard sequence: a(n) is the minimum number of unit length line segments required to enclose areas of 1 through n on a square grid.
Original entry on oeis.org
4, 9, 14, 20, 26, 33, 40, 47, 55, 63
Offset: 1
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
|__ __ __|__ __|__ __|__|
| | |__|
|__ __ __ __ __|__ __|
.
A348149
Variation of the Barnyard sequence A347581: a(n) is the minimum number of unit-length line segments required to enclose areas of 1 through n on a square grid when the number of segments is minimized as each area of incrementing size, starting at 1, is added.
Original entry on oeis.org
4, 9, 14, 20, 26, 33, 40, 48, 55, 64
Offset: 1
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
| |__ __ __| | |
| | | | |
| |__ __|__ __|__ __|
|__ __|
.
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-4 of 4 results.
Comments