VOOZH about

URL: https://oeis.org/A308885

⇱ A308885 - OEIS


login
A308885
Positions of 0's on the spiral defined in A308884.
11
0, 1, 2, 3, 20, 25, 30, 35, 36, 37, 40, 41, 42, 47, 48, 49, 54, 55, 56, 63, 65, 70, 79, 88, 94, 95, 110, 112, 114, 115, 121, 123, 125, 126, 132, 134, 137, 138, 141, 143, 144, 145, 147, 149, 150, 152, 154, 155, 156, 162, 165, 167, 168, 169, 175, 178, 180, 181, 182, 195, 197
OFFSET
1,3
COMMENTS
Comments from N. J. A. Sloane, Feb 06 2026 (Start)
An equivalent definition: Walk along the square spiral, with its cells numbered starting at 0, as in A308884 and A274641. Start with no knights. If the square you are at is not attacked by an existing knight, place a knight there, otherwise leave it empty. The sequence lists the squares where the knights are. See links for illustrations.
For the initial 26 or so layers of the spiral, Karlsson's illustration shows a regular structure. But other sequences of this type have been known to become chaotic after millions of terms. Could that happen here? (End)
LINKS
Jonas Karlsson, Illustration for the equivalent definition mentioned in the COMMENTS. [Blue dots indicate squares occupied by knights. Shows 26 layers of the spiral.]
N. J. A. Sloane, Illustration for the equivalent definition mentioned in the COMMENTS. [Shows 6 layers of the spiral. Circles contain a knight, squares with a slash are attacked by a knight.]
PROG
(Python) # uses code/imports in A308884
def A308885_gen(t=0): yield from (k for k, ak in enumerate(A308884_gen()) if ak == t)
print(list(islice(A308885_gen(), 61))) # Michael S. Branicky, Feb 05 2026
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jul 01 2019
STATUS
approved