OFFSET
1,2
COMMENTS
Each knight must be either already on an edge square, or have a path of unoccupied squares which reach an unoccupied edge square (and without any other knights moving).
EXAMPLE
For n=3, the following board, with X for each knight, is the unique solution a(3) = 8 and which cannot be 9 since the central square has no move to anywhere within the board.
XXX
X-X
XXX
For n=4, the following is a solution for a(4) = 14, with each of the 4 central knights able to make a single move to one of the unoccupied corner squares.
-XX-
XXXX
XXXX
XXXX
For n = 8, one 55 knight solution is:
XXXXXXXX
XXXXXXXX
XX-X-XXX
XX-X-XXX
-XX---XX
XXXX-XXX
XXXXXXXX
XXXXXXXX
CROSSREFS
KEYWORD
nonn,hard,more
AUTHOR
Walter Robinson, Aug 26 2024
STATUS
approved