Pedro was really interested in last algorithms class. So he started thinking and creating crazy networks. He proposed this:
- First, he restricted the BA model, so when adding a new node with \(m\) links, each link has to go to a different node (probabilities have to be calculated at each new link, excluding the nodes already linked to the new one).
- Now he established that \(m\) should follow the t-Fibonacci sequence. Where for a given \(t\) we have \(tFib(t) = t * Fib(t)\). (\(Fib(t)\) is the standard Fibonacci sequence)
- Finally, for each node he adds, he deletes \(2^t\) nodes.
Pedro started the network with 9876 nodes. Can you help him find the time \(t\) where he will not be able to follow the crazy network constraints?
- \(t = 10\)
- \(t = 11\)
- \(t = 12\)
- \(t = 13\)
- None of the above.
Original idea by: Pedro Henrique Di Francia Rosso