A279403 Irregular triangle read by rows: T(n,k) (n>=1, 0 <= k <= n^2) = minimal number of squares not attacked by k queens on an n X n toroidal board, with trailing zeros truncated.
1, 4, 9, 16, 4, 25, 8, 2, 36, 16, 4, 49, 24, 11, 4, 64, 36, 16, 6, 81, 48, 27, 12, 3, 100, 64, 36, 19, 4, 121, 80, 51, 29, 13, 144, 100, 64, 39, 16, 6, 169, 120, 83, 53, 29, 8, 2, 196, 144, 100, 67, 36, 18, 8, 225, 168, 223, 82, 41, 256, 196, 144, 103, 64, 40
Offset: 1
Examples
The triangle begins: 1 (0) 4 (0, 0, 0, 0) 9 (0, 0, ...) 16 4 (0, 0, ...) 25 8 2 36 16 4 49 24 11 4 64 36 16 6 81 48 27 12 3 100 64 36 19 4 121 80 51 29 13 144 100 64 39 16 6 169 120 83 53 29 8 2 196 144 100 67 36 18 8 225 168 123 82 41 256 196 144 103 64 40 ...
Comments