Look-and-say sequence


In mathematics, the look-and-say sequence is the sequence of integers beginning as follows:
To generate a member of the sequence from the previous member, read off the digits of the previous member, counting the number of digits in groups of the same digit. For example:
The look-and-say sequence was introduced and analyzed by John Conway.
The idea of the look-and-say sequence is similar to that of run-length encoding.
If started with any digit d from 0 to 9 then d will remain indefinitely as the last digit of the sequence. For d different from 1, the sequence starts as follows:
Ilan Vardi has called this sequence, starting with d = 3, the Conway sequence.

Basic properties

Growth

The sequence grows indefinitely. In fact, any variant defined by starting with a different integer seed number will also grow indefinitely, except for the degenerate sequence: 22, 22, 22, 22, …

Digits presence limitation

No digits other than 1, 2, and 3 appear in the sequence, unless the seed number contains such a digit or a run of more than three of the same digit.

Cosmological decay

Conway's cosmological theorem asserts that every sequence eventually splits into a sequence of "atomic elements", which are finite subsequences that never again interact with their neighbors. There are 92 elements containing the digits 1, 2, and 3 only, which John Conway named after the chemical elements up to uranium, calling the sequence audioactive. There are also two "transuranic" elements for each digit other than 1, 2, and 3.

Growth in length

The terms eventually grow in length by about 30% per generation. In particular, if Ln denotes the number of digits of the n-th member of the sequence, then the limit of the ratio exists and is given by
where λ = 1.303577269034... is an algebraic number of degree 71. This fact was proven by Conway, and the constant λ is known as Conway's constant. The same result also holds for every variant of the sequence starting with any seed other than 22.

Polynomial returning Conway's constant

Conway's constant is the unique positive real root of the following polynomial:
In his original article, Conway gives an incorrect value for this polynomial, writing − instead of + in front of. However, the value of given in his article is correct.

Popularization

The look-and-say sequence is also popularly known as the Morris Number Sequence, after cryptographer Robert Morris, and the puzzle "What is the next number in the sequence 1, 11, 21, 1211, 111221?" is sometimes referred to as the Cuckoo's Egg, from a description of Morris in Clifford Stoll's book The Cuckoo's Egg.

Variations

There are many possible variations on the rule used to generate the look-and-say sequence. For example, to form the "pea pattern" one reads the previous term and counts all instances of each digit, listed in order of their first appearance, not just those occurring in a consecutive block. Thus, beginning with the seed 1, the pea pattern proceeds 1, 11, 21, 1211, 3112, 132112, 311322, etc. This version of the pea pattern eventually forms a cycle with the two terms 23322114 and 32232114.
Other versions of the pea pattern are also possible; for example, instead of reading the digits as they first appear, one could read them in ascending order instead. In this case, the term following 21 would be 1112 and the term following 3112 would be 211213.
These sequences differ in several notable ways from the look-and-say sequence. Notably, unlike the Conway sequences, a given term of the pea pattern does not uniquely define the preceding term. Moreover, for any seed the pea pattern produces terms of bounded length. This bound will not typically exceed 2 * radix + 2 digits and may only exceed 3 * radix digits in length for degenerate long initial seeds. For these maximum bounded cases, individual elements of the sequence take the form a0b1c2d3e4f5g6h7i8j9 for decimal where the letters here are placeholders for the digit counts from the preceding element of the sequence. Given that this sequence is infinite and the length is bounded, it must eventually repeat due to the pigeonhole principle. As a consequence, these sequences are always eventually periodic.