A328928 Squares visited by a knight moving on a taxicab geometry numbered board where the knight moves to the smallest numbered unvisited square; the minimum distance from the origin is used if the square numbers are equal; the smallest spiral number ordering is used if the distances are equal.
0, 3, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 4, 5, 2, 3, 4, 3, 4, 3, 2, 5, 4, 3, 4, 5, 2, 3, 4, 5, 4, 5, 4, 3, 4, 5, 6, 3, 4, 3, 4, 3, 4, 3, 4, 5, 6, 5, 6, 7, 6, 5, 4, 5, 4, 7, 6, 5, 6, 7, 6, 5, 6, 5, 4, 7, 6, 5, 6, 7, 6, 5, 8, 7, 6, 7, 6, 5, 6, 7, 6, 5, 6, 5, 6, 7, 8, 7, 8, 7, 6, 7, 8, 7, 6, 7, 8, 7, 6
Offset: 0
Examples
The squares are labeled using their taxicab geometry distance from the origin: . +----+----+----+----+----+----+----+ | 6 | 5 | 4 | 3 | 4 | 5 | 6 | +----+----+----+----+----+----+----+ | 5 | 4 | 3 | 2 | 3 | 4 | 5 | +----+----+----+----+----+----+----+ | 4 | 3 | 2 | 1 | 2 | 3 | 4 | +----+----+----+----+----+----+----+ | 3 | 2 | 1 | 0 | 1 | 2 | 3 | +----+----+----+----+----+----+----+ | 4 | 3 | 2 | 1 | 2 | 3 | 4 | +----+----+----+----+----+----+----+ | 5 | 4 | 3 | 2 | 3 | 4 | 5 | +----+----+----+----+----+----+----+ | 6 | 5 | 4 | 3 | 4 | 5 | 6 | +----+----+----+----+----+----+----+ . If the knight has a choice of two or more squares with the same number which also have the same distance from the origin, then the square with the minimum square spiral number, as shown in A316667, is chosen.
Links
- Scott R. Shannon, Table of n, a(n) for n = 0..20000
- M. F. Hasler, Knight tours, OEIS wiki, Nov. 2019
- Scott R. Shannon, Image showing the 1092366 steps of the knight's path. The green dot is the first square and the red dot the last. Blue dots show the eight occupied squares surrounding the final square; the final square is on the boundary at about the 12:30 clock position.
- N. J. A. Sloane and Brady Haran, The Trapped Knight, Numberphile video (2019).
- Wikipedia, Taxicab geometry.
Crossrefs
Programs
-
PARI
A328928(n)=normlp(coords(A328908(n)),1) \\ with coords() defined e.g. in A296030. - M. F. Hasler, Nov 04 2019
Comments