OFFSET
1,2
COMMENTS
The rook may move over squares it has already visited, only the final square after a full move must not have been visited before.
As for A316667, the rook gets trapped as well. This happens after step 185 on square 118.
LINKS
Patrick Wienhöft, Table of n, a(n) for n = 1..185
Patrick Wienhöft, Python implementation (incl. graphical output).
EXAMPLE
The rook starts on square a(1) = 1. Thus its available moves are of length len(1) + 1 = 2, possibly reaching squares 11, 15, 19 and 23. Since 11 is the smallest value, a(2) = 11. From there on, the next move must have length len(11) + 1 = 3, etc.
CROSSREFS
KEYWORD
nonn
AUTHOR
Patrick Wienhöft, Aug 21 2020
STATUS
approved