In order to compute any Fibonacci number, you need the previous two terms in the series. This continues recursively until a base case is reached. From this, a binary tree can be constructed. The top node N, will have subnodes N-1 and N-2. The leaves of the tree will be all 1's and 2's. Since this tree is a fractal, it should have a Hausdorff dimension between 1 and 2. The number of elements E(N) in the tree as a function of N is:
N : E(N)
1 : 1 (base case)
2 : 1 (base case)
3 : 3
4 : 5
5 : 9
6 : 15
7 : 25
8 : 41
9 : 67
10 : 109
...
N : E(N-1)+E(N-2)+1
This grows exponentially. I figured if I were to use the formula E(N) = N^D, I could calculate the dimension. Or D = log(N(E))/log(N). However I am failing to get any reasonable solution. Personally, I'm hoping I get phi, but I'm not holding my breath.

