A319158 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, if the triangle has the same orientation as the grid.
0, 1, 2, 4, 6, 9, 13, 18, 23, 29, 35, 43, 51
Offset: 1
Examples
For n=5, there is a unique solution for a(5)=6 (representing selected points by O): O . . , O , . O O . O . , . O It can be seen that this is not a valid solution for A227116 because of the upside-down triangle of commas. One solution for A227116(5)=7 would be to select one of the commas as well.
Links
- Ed Wynn, A comparison of encodings for cardinality constraints in a SAT solver, arXiv:1810.12975 [cs.LO], 2018.
Comments