Consider the following definition written in Cinnameg.
Define f(n) = (: n :: f(n*n) :).
What value does expression f(2) compute? Give the full value,
as it would be if it were examined.
[2, 4, 16, 256, 65536, …].
(Each number after the first one is the square of the previous one.)