A337746 Maximum number of bishops within an n X n chessboard, where each bishop has a path to an edge.
1, 4, 8, 12, 19, 28, 37, 48, 57, 72, 87
Offset: 1
Links
- Nicholas Tran, Solution in ASP
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
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