Elephant sequence

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?

2 4 1 3

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.

2 solutions

Assuming that the sequence is { a n } n = 1 \{a_n\}_{n=1}^{\infty} , where a 1 = 1 a_1=1 and a 2 = 2 a_2=2 , for n > 2 n>2

a n + 1 = 2. ( a n + a n 2 ) = 3. a n a_{n+1}=2 . (a_n+\frac{a_n}{2})=3.a_n

therefore a n = 2. 3 n 2 a_n=2.3^{n-2} , for n > 2 n>2

Ramesh Perumal
Jul 29, 2019

After listing a few terms, we notice that the numbers on the board have the following pattern: 1,2,2·3,2·3^2,2·3^3,.... One can show by induction using a geometric series that every term after the first will be twice a power of 3, where the exponent increases by 1 each time. Hence the largest number on the board will have exactly 2 prime factors.

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...