git @ Cat's Eye Technologies Kolakoski-Kurve / 1.0
1.0

Tree @1.0 (Download .tar.gz)

Kolakoski Kurve

Try it online @ catseye.tc | See also: Maze CloudsLatcarfErratic Turtle Graphics

screenshot screenshot of XOR version

The Kolakoski sequence (Wikipedia), also called the "see and say" sequence, is an unbounded sequence of 1's and 2's which starts

1, 2, 2, 1, 1, 2, 1, 2, 2, 1, 2, 2, 1, 1, 2, 1, 1, ...

An interesting property of this sequence is that is describes its own run lengths: there is one 1's, followed by two 2's, followed by two 1's, followed by one 2, and so forth.

Kolakoski Kurve is a 2-dimensional visualization of the Kolakoski sequence that I devised circa 2016. It can be thought of as combining the sequence with turtle graphics, by the following method: Read the sequence left to right; whenever you see a 1, go forward some fixed distance, and whenever you see a 2, turn right 90 degrees.

Because the sequence itself is irregular, this process produces irregular shapes which are, to my mind, aesthetically pleasing.

The path does fold back on itself quite often (whenever two 2's appear in the sequence), so drawing the path with an XOR pen (which inverts any existing pixels on the line) instead of simply laying down black pixels results in another interesting drawing.