Let's think about how to get to the third stone. You can either hop from two stones before the third stone, or you can move once from the second stone. Since there is one way to get to either, there is a sum total of two ways to get to the third stone.
Now let's think about the fourth stone. You can either hop from two stones before the fourth stone, or you can move once from the third stone. Since there is one way to get to the second stone, and two ways to get to the third, there is a sum total of 3 ways to get to the fourth stone
Now let's think about the fifth stone. You can either hop from two stones be...wait a second! You can describe the way to get to any stone recursively!
Suppose we have f(n) where n is the nth stone you would like to reach. By the above recursive relationship (recurrence relation) we can say that:
f(n) = f(n - 1) + f(n - 2)
Look familiar? This is the Fibbonacci sequence!