I'm trying to extend my OEIS sequence A275815: Maximum total number of possible moves that any number of queens of the same color can make on an $n \times n$ chessboard.
I have computed the first five terms by brute force, and examples of each are given below.
For $n \geq 6$, Alec Jones has conjectured that $A275815(n) = 8(n-2)^2$, which is achieved by placing $4n - 4$ queens around the border of the board—but this has not been proven. Alec's heuristic is based on summing the number of queens that can move to each empty square (which is no more than 8) instead of summing the number of moves each individual queen can make.
Any thoughts on how to begin to prove this conjecture?
Examples:
A $2\times 2$ chess board can "host" 4 queen moves:
- $a1 \to b1$
- $a1 \to b2$
- $a2 \to b1$
- $a2 \to b2$
A $3 \times 3$ board can host 17 moves: (The queen at a3 has three moves, the queen at a2 has four moves, and the queens at b1 and c3 each have five moves.)
A $4 \times 4$ board can host 40 moves:
And a $5 \times 5$ board can host 76 moves:




I'm sorry for responding with a non-encompassing answer, however I do have a few observations I'd like to share:
Mr.Jones' conjecture considers most scenarios but I believe by placing a queen in the center (as that location will not be covered by all eight directions) will net more host locations due to the queen covering 2(n-1) - 4 locations (2(n-1) is the diagonals un-covered by the queens from that direction and thus earned, the minus four is due to the queen covering four queens' ability to host on the center, and 2(n-1) > 4 when n > 3 so placing a queen on the center will be better thus the equation should be: 8(n-2)^2 + 2(n-1) - 4 if n is odd (as if not the center is four locations thus the situation is wildly different).
Other things that may help: Relative to the center, any queen placed on a location will net 4(n-1) - 2(x) where x is the distance the queen is from the center.
I'm sorry if I didn't explain this well, I hope it helps.
Edit: I'm not sure if I'm breaking a code here, as this observation is not an answer and more a comment, I can't place a comment due to being a novice and I'm unable to find a way to contact you other than posting here, if I'm out of line please inform me and I'll delete the comment, thank you for your time.