Find the next number in this pattern
1,1,1,2,4,8,3,9,?,4,16
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 pattern follows like this:
Let T r denote the r th term of the sequence, then:
If r = 3 k for some k ∈ Z + , T r = k 3
If r = 3 k + 1 for some k ∈ Z + , T r = k + 1
If r = 3 k + 2 for some k ∈ Z + , T r = ( k + 1 ) 2
Now, just put the value of k randomly (according to desired r ) to get any term of the sequence quickly. Here, required r = 9 = 3 × 3 .
So, k = 3
Hence, T 9 = 3 3 = 2 7
As the pattern is 1,1,1,2,4,8,3,9,?,4,16 We can see that at first the number is there then its square and after that its cube 1 is the number, its square is 1 and its cube is 1. 2 is the number , its square is 4 and its cube is 8. So, 3 is the number, 9 is the square and 27 is its cube. therefore the answer is 27.
I did it exactly the same way but a little bit changes.
I took it of the form,
x
,
x
2
,
x
×
x
2
which is ultimately
x
3
:P. Anyways great question.
Problem Loading...
Note Loading...
Set Loading...
Pattern-1,1,1,2,4,8,3,9,?,4,16
1 1 , 1 2 , 1 3 , 2 1 , 2 2 , 2 3 , 3 1 , 3 2 , ? , 4 1 , 4 2
1 1 , 1 2 , 1 3 , 2 1 , 2 2 , 2 3 , 3 1 , 3 2 , 3 3 , 4 1 , 4 2
1,1,1,2,4,8,3,9,27,4,16
Answer- 2 7