A260113 Maximum number of queens on an n X n chessboard such that no queen attacks more than one other queen.
1, 2, 3, 4, 5, 8, 9, 10, 12, 13, 14, 16, 17, 18, 20, 21, 22, 24, 25, 26, 28, 29, 30, 32, 33, 34, 36, 37, 38, 40
Offset: 1
Keywords
Examples
a(8) = 10: X------- ----XX-- -X------ -X------ ------X- ------X- --XX---- X-------
Links
- IBM, Ponder This Challenge, August 2008 (a(30) = 40 and upper bound a(n) <= 4n / 3).
- Géza Makay, Proof that a(n) = floor(4*n/3) for large n (in Hungarian).
- Giovanni Resta, Illustration of a(6)-a(30)
- Manfred Scheucher, Python Script
Formula
Ponder This solution page shows a(6n) = 8n.
Extensions
a(16)-a(30) from Giovanni Resta, Aug 07 2015
Comments