2 , 3 , 1 1 , 1 3 , 2 3 , 3 1 , . . .
What is the 8th term in this sequence?
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.
can you please elaborate it ....couldn't get the whole idea of it
Definitely. So, the main idea of it is not entirely obvious, but you have to look for it to solve it. If you notice, the digits used in each number in each term range from 1-3. This seems a little unusual, because usually they could range from 0-9. You have to think a little out of the box to figure out the numbers are in base 4 . Now, to elaborate on what that means. Mostly we use base 10, where the digits used are 0-9 and for each digit a n going to the left in a number, that digit represents a ⋅ 1 0 n , starting with n = 0 in the ones digit, and n = n + 1 with each digit. So, in base 4, each digit a n , starting with n = 0 at the ones and going left, represents a ⋅ 4 n . Now, you can convert the base 4 numbers to base 10 by adding powers of 4. The third term, 11, is equivalent to 1 ⋅ 4 0 + 1 ⋅ 4 1 , or 5. Doing this for each number gives you a sequence of the first primes in base 10. So now you just find the 8th prime and split it into powers of 4. 19 equals 1 ⋅ 4 2 + 0 ⋅ 4 1 + 3 ⋅ 4 0 . The answer is 1 0 3
Nice problem, dude! But moreover, you can realize that all the first six numbers in this sequence are prime numbers!!! And all of them contain only digits from 0 - 3. Hence the 7th term is 101, the 8th term is 103. I don't think my solution is right. But in my mind, sometimes you can find interesting solution! Have a nice day!
Problem Loading...
Note Loading...
Set Loading...
One must first realize that the only digits used are 0 - 3, which means the sequence is in base 4. After converting the numbers back to base 10, the sequence is simple, the list of primes starting with the first. Converting the 8th prime, 19, to base 4, gives the answer, 1 0 3 .