cp's OEIS Frontend

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.

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.

Original entry on oeis.org

0, 1, 0, 5, 8, 11, 14, 18, 22
Offset: 0

Views

Author

Rodolfo Kurchan, Mar 24 2022

Keywords

Comments

On the 6 X 6 board in the illustration (see Example), each square containing a number is occupied by a queen, and the number in that square is the number of unoccupied squares attacked by that queen. (Each square with no number is unoccupied.)
Solvers:
a(4) = 8 by Rodolfo Kurchan
a(5) = 11 by Gustavo PiƱeiro
a(6) = 14 by Antonio Misericordia
a(7) = 18 by Antonio Misericordia
a(8) = 22 by Giorgio Vecchi

Examples

			Solution illustrating a(6) = 14 by Antonio Misericordia:
  +---+---+---+---+---+---+
  | 2 | 7 |   | 5 | 4 | 0 |
  +---+---+---+---+---+---+
  | 10|   |   |   | 6 | 1 |
  +---+---+---+---+---+---+
  |   |   |   | 11|   | 3 |
  +---+---+---+---+---+---+
  |   |   |   | 13|   | 8 |
  +---+---+---+---+---+---+
  |   |   |   |   |   |   |
  +---+---+---+---+---+---+
  |   |   | 12|   | 9 |   |
  +---+---+---+---+---+---+
		

Crossrefs

Cf. A186238.