A375762 Maximum number of knights within an n X n chessboard, where each knight has a path to an edge.
1, 4, 8, 14, 20, 30, 41, 55
Offset: 1
Examples
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
Comments