Calculates the nth term of the Look-and-say sequence.
$ cargo build
$ target/debug/look-and-say-sequence -n 5
111221
$ cargo test
The digits of this sequence grow linearly, and so does the computing power required to process a given step.
But because the index to reach requires the computation of all the previous steps, the time complexity of this problem is actually