(a) A young pair of rabbits is placed on an island. A young pair does not breed until they are 2 months old. After they are 2 months old, each pair of rabbits produces another pair each month. Assuming that no rabbit ever dies, find the number of rabbits living in the island after n months. Find the recurrence relation.
(b) Try to solve the following variants of the problem: (i) when a young pair does not breed until they are 3 months old, (ii) when a young pair does not breed until they are N months old.
Solution of (a) is Fibonacci equation ${f_n} = {f_{n-1}}+{f_{n-2}}$ for $n\ge2$.
For (b)(i) i got a sequence of 1,1,1,2,3,4,6,9, ...
But I got stuck in finding a recurrence relation for it and for (ii).