OFFSET
0,13
COMMENTS
The rightmost part of the triangle contains only zeros. As any connection component needs at least two queens, the number of connection components of a solution is always less than or equal to n.
LINKS
M. Engelhardt, Rows n=0..16 of triangle, flattened
Matthias Engelhardt, Conflicts in the n-queens problem
Matthias Engelhardt, Conflict tables for the n-queens problem
M. R. Engelhardt, A group-based search for solutions of the n-queens problem, Discr. Math., 307 (2007), 2535-2551.
FORMULA
EXAMPLE
Triangle begins:
0;
1, 0;
0, 0, 0;
0, 0, 0, 0;
0, 0, 2, 0, 0;
10, 0, 0, 0, 0, 0;
0, 4, 0, 0, 0, 0, 0;
28, 0, 4, 8, 0, 0, 0, 0;
... - Andrew Howroyd, Dec 31 2017
for n=4, there are only the two solutions 2-4-1-3 and 3-1-4-2. Both have two connection components in the conflicts graph. So, the terms for n=4 are 0, 0, 2 (the two cited above), 0 and 0. These are members 10 to 15 of the sequence.
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Matthias Engelhardt, Oct 30 2010
EXTENSIONS
Offset corrected by Andrew Howroyd, Dec 31 2017
STATUS
approved