This article covers the Busy Brain Beaver function BBB(n) counting the maximum
number of steps taken by non-interactive right-unbounded Brainfuck programs of
length n.
A non-interactive Brainfuck program has six instructions: move the head left
and right, increment and decrement the highlighted cell, and start and end
loops. A right-unbounded Brainfuck program only moves to the right of the
starting cell, but has access to an unbounded number of cells. Every single
instruction takes a single step, including loop tests.