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.

A328283 The maximum number m such that m white, m black and m red queens can coexist on an n X n chessboard without attacking each other.

Original entry on oeis.org

0, 0, 0, 1, 1, 2, 3, 4, 5, 7, 8, 10, 12, 14
Offset: 1

Views

Author

Dmitry Kamenetsky, Oct 11 2019

Keywords

Comments

This is the peaceable queens problem (A250000) for 3 players.
For n >= 11, it seems that a(n) is simply 2n - 14. However this turns out to be false as a(18) >= 23.
In the limit of large n, Arthur O'Dwyer (see links) showed that the optimal value is lower bounded by 0.0718*n^2. All currently known best solutions follow this formula (when rounded down). - M. A. Achterberg, Dec 01 2022

Examples

			a(8) = 4, because 4 queens of each color can co-exist without attacking queens of another color. Note that in this case both red (6) and white (5) have more than 4 queens.
+ - - - - - - - - +
| R . R . R . . . |
| R . . . . . . . |
| . . . . . W . W |
| R . R . . . . . |
| . . . . . W . W |
| . B . B . . . . |
| . . . . . . . W |
| . B . B . . . . |
+ - - - - - - - - +
		

Crossrefs

Cf. A250000.