There once was a man who put a pair of special rabbits that will never die in a particular place entirely surrounded by walls. Assume that the nature of these special rabbits is that each month, each pair bears a new pair that becomes productive from the second month onwards?
How many pairs of rabbits will be produced by the end of a year?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
This is the Fibonacci sequence! Each month, we take the number of rabbit pairs alive last month and add in the number of baby rabbits. But the number of baby rabbits is one for every pair of rabbits alive two months ago! So we are just adding the number of rabbit pairs last month to the number of pairs two months ago.
There are 12 months in the year, and the 12th Fibonacci number is 1 4 4 .