A240439
Triangle T(n, k) = Numbers of ways to place k points on a triangular grid of side n so that no three of them are vertices of an equilateral triangle of any orientation. Triangle read by rows.
Original entry on oeis.org
1, 1, 1, 3, 3, 1, 6, 15, 15, 3, 1, 10, 45, 105, 114, 39, 3, 1, 15, 105, 420, 969, 1194, 654, 102, 3, 1, 21, 210, 1260, 4773, 11259, 15615, 11412, 3663, 342, 15, 1, 28, 378, 3150, 17415, 64776, 159528, 250233, 234609, 119259, 28395, 2613, 69, 1, 36, 630, 6930
Offset: 1
The triangle begins:
1, 1;
1, 3, 3;
1, 6, 15, 15, 3;
1, 10, 45, 105, 114, 39, 3;
1, 15, 105, 420, 969, 1194, 654, 102, 3;
1, 21, 210, 1260, 4773, 11259, 15615, 11412, 3663, 342, 15;
There are T(5, 8) = 3 ways to place 8 points (x) on a triangular grid of side 5 under the conditions mentioned above:
. x x
x x x . . x
x . x x . . . . x
x . . x x . . . . . . x
x . . . x . x x x x x x x x .
A240443
Maximal number of points that can be placed on an n X n square grid so that no four of them are vertices of a square with any orientation.
Original entry on oeis.org
1, 3, 6, 10, 15, 21, 27, 34, 42, 50
Offset: 1
On a 9 X 9 grid a maximum of 42 points (x) can be placed so that no four of them are vertices of an (arbitrarily oriented) square. An example:
x x . . x . x . x
. x . . x x x x .
x x x . . x . . x
x . x x x . . x x
. . . . x x . . .
. x . x x . . . x
x x x . x . . . x
x . x . . . . x x
x . . x x x x x .
- Robert Israel, Illustration showing a(10) >= 50
- Robert Israel, Illustration showing a(11) >= 58
- Robert Israel, Illustration showing a(12) >= 67
- Peter Karpov, Maximal density subsquare-free arrangements / #Optimization #OpenProblem / 2016.02.22, giving lower bounds for a(1)-a(16).
- Peter Karpov, Best configurations known for n = 13 .. 16
- Giovanni Resta, Illustration of a(8) and a(9)
- Dominik Stadlthanner, Python program
- Ed Wynn, A comparison of encodings for cardinality constraints in a SAT solver, arXiv:1810.12975 [cs.LO], 2018.
A243141
Triangle T(n, k) = Numbers of inequivalent (mod D_3) ways to place k points on a triangular grid of side n so that no three of them are vertices of an equilateral triangle of any orientation. Triangle read by rows.
Original entry on oeis.org
1, 1, 1, 2, 4, 3, 1, 3, 10, 19, 22, 7, 1, 4, 22, 75, 170, 204, 115, 18, 1, 5, 41, 218, 816, 1891, 2635, 1909, 628, 58, 3, 7, 72, 542, 2947, 10846, 26695, 41770, 39218, 19905, 4776, 437, 13, 8, 116, 1178, 8765, 46068, 171700, 444117, 776276, 876012, 601078, 229941
Offset: 1
The triangle begins:
1;
1, 1;
2, 4, 3, 1;
3, 10, 19, 22, 7, 1;
4, 22, 75, 170, 204, 115, 18, 1;
5, 41, 218, 816, 1891, 2635, 1909, 628, 58, 3;
7, 72, 542, 2947, 10846, 26695, 41770, 39218, 19905, 4776, 437, 13;
...
There is exactly T(5, 8) = 1 way to place 8 points (x) on a triangular grid of side 5 according to the definition of the sequence:
.
x x
x . x
x . . x
x . . . x
A319159
Given an equilateral triangular grid with side n, containing n(n+1)/2 points, a(n) is the minimal number of points to be selected, such that any equilateral triangle of points will include at least one of the selection.
Original entry on oeis.org
1, 2, 4, 7, 11, 16, 22, 28, 35, 44, 53, 63, 74, 86
Offset: 1
For n=4, this sequence has the same value a(4)=4 as A227116 and A319158, but if we look at the three solutions to those sequences (unique up to symmetry), representing selected points by O:
O O O
O , . , . .
, . O , O . . O .
. O , . O . , O . O O .
We see that only the last of these is a solution here -- the others have rotated triangles not including any selected point (for example, as shown with commas). The last selection is therefore the unique solution (up to symmetry) for a(4)=4.
A350547
Maximum size of a set of points taken from a hexagonal section of a hexagonal grid with side length n such that no three selected points form an equilateral triangle.
Original entry on oeis.org
1, 4, 9, 15, 22, 28, 36
Offset: 0
For n = 4 the a(4) = 22 solution, unique up to rotation, is:
.
o x x o x
x x o o o x
x o o o o x o
o o o o o o x x
x o o o o o o o x
x x o o o o o o
o x o o o o x
x o o o x x
x o x x o
.
Showing 1-5 of 5 results.
Comments