This design computes a Fibonacci sequence.  A Fibonacci sequence is one in
which each number in the sequence is the sum of the previous two numbers in
the sequence.  This property, of course, does not apply to the first two
numbers in the sequence.

The sequence computed is:

0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, ...
