A352623 a(n) is the maximum number k of queens that can be placed on an n X n chessboard such that, for each number j in 0..k-1, there is a queen attacking exactly j unoccupied squares.
0, 1, 0, 5, 8, 11, 14, 18, 22
Offset: 0
Examples
Solution illustrating a(6) = 14 by Antonio Misericordia: +---+---+---+---+---+---+ | 2 | 7 | | 5 | 4 | 0 | +---+---+---+---+---+---+ | 10| | | | 6 | 1 | +---+---+---+---+---+---+ | | | | 11| | 3 | +---+---+---+---+---+---+ | | | | 13| | 8 | +---+---+---+---+---+---+ | | | | | | | +---+---+---+---+---+---+ | | | 12| | 9 | | +---+---+---+---+---+---+
Links
- Rodolfo Kurchan, Chess Puzzle Fun 5 Uneven Attacks
Crossrefs
Cf. A186238.
Comments