OFFSET
1,2
LINKS
Alois P. Heinz, Table of n, a(n) for n = 1..10000
F. Michel Dekking, Jeffrey Shallit, and N. J. A. Sloane, Queens in exile: non-attacking queens on infinite chess boards, Electronic J. Combin., 27:1 (2020), #P1.52.
EXAMPLE
The second queen appears in the fourth antidiagonal at position 7 (calling the top left square square 0):
Qxxx
xxxQ
xQxx
xxxx
so a(2) = 7.
MAPLE
MATHEMATICA
b8 = Cases[Import["https://oeis.org/A065188/b065188.txt", "Table"], {_, _}][[All, 2]];
ts = {};
For[n = 1, n <= 130, n++, ta = b8[[n]]; tb = n - 1 + (ta + n - 2)*(ta + n - 1)/2; ts = Append[ts, tb]];
Sort[ts] (* Jean-François Alcover, Feb 27 2020, from Maple *)
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Aug 23 2016, following a suggestion from David A. Corneth
STATUS
approved