minElements 0 = 0 minElements 1 = 1 minElements h = 1 + minElements (h-1) + minElements (h-2) -- = Some weird expression involving the golden ratio
maxElements 0 = 0 maxElements h = 1 + 2 * maxElements (h-1) -- = 2^h-1