The increasing sequence 1, 3, 4, 9, 10, 12, 13, … contains all the powers of 3 and all the numbers that can be written as the sum of two or more distinct powers of 3. What is the 70th number in the sequence?
This problem is not original.This problem is part of this set .
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.
The n t h term a n is given by converting n into base 2 and then replacing the powers of 2 with powers of 3 . See below:
⇒ n = 1 = 2 0 n = 2 = 2 1 n = 3 = 2 1 + 2 0 n = 4 = 2 2 n = 5 = 2 2 + 2 0 n = 6 = 2 2 + 2 1 n = 7 = 2 2 + 2 1 + 2 0 n = 7 0 = 2 6 + 2 2 + 2 1 ⇒ a 1 = 3 0 ⇒ a 2 = 3 1 ⇒ a 3 = 3 1 + 3 0 ⇒ a 4 = 3 2 ⇒ a 5 = 3 2 + 3 0 ⇒ a 6 = 3 2 + 3 1 ⇒ a 3 = 3 2 + 3 1 + 3 0 . . . ⇒ a 3 = 3 6 + 3 2 + 3 1 = 1 = 3 = 4 = 9 = 1 0 = 1 2 = 1 3 = 7 4 1