An elephant writes a sequence of numbers on a board starting with 1. Each minute, it doubles the sum of all the numbers on the board so far, and without erasing anything, writes the result on the board. It stops after writing a number greater than one billion. How many distinct prime factors does the largest number on the board have?
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.
Assuming that the sequence is { a n } n = 1 ∞ , where a 1 = 1 and a 2 = 2 , for n > 2
a n + 1 = 2 . ( a n + 2 a n ) = 3 . a n
therefore a n = 2 . 3 n − 2 , for n > 2