A244500 Number T(n, k) of ways to place k points on an n X n X n triangular grid so that no pair of them has distance sqrt(3). Triangle read by rows.
1, 1, 1, 3, 3, 1, 1, 6, 12, 8, 1, 10, 36, 55, 33, 9, 1, 15, 87, 248, 378, 339, 187, 63, 12, 1, 1, 21, 180, 820, 2190, 3606, 3716, 2340, 825, 125, 1, 28, 333, 2212, 9110, 24474, 43928, 53018, 42774, 22792, 7945, 1764, 196, 1, 36, 567, 5163, 30300, 121077, 339621
Offset: 1
Examples
On an 8 X 8 X 8 grid there is T(8, 18) = 1 way to place 18 points (x) so that no pair of points has the distance square root of 3. x x x . . . x . . x x x . x x . . . . . . x . . x . . x x x . x x . x x Continuation of this pattern will give the unique maximal solution for all n = 3j-1. Triangle T(n, k) begins: 1, 1; 1, 3, 3, 1; 1, 6, 12, 8; 1, 10, 36, 55, 33, 9; 1, 15, 87, 248, 378, 339, 187, 63, 12, 1; 1, 21, 180, 820, 2190, 3606, 3716, 2340, 825, 125; First row refers to n = 1.
Links
- Heinrich Ludwig, Table of n, a(n) for n = 1..153
- Stan Wagon, Graph Theory Problems from Hexagonal and Traditional Chess, The College Mathematics Journal, Vol. 45, No. 4, September 2014, pp. 278-287.
- Eric Weisstein's World of Mathematics, Independence Polynomial
Comments