Find the next number in the following pattern:
1, 2, 2, 4, 2, 4, 2, 4, 6, 2, 6, ............
Note: This problem is not original
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.
Break the series in two sub-series with alternate numbers in it. You get 1, 2, 2, 2, 6 , 6............ 2, 4, 4, 4, 2, ............. Missing number is 2.
Solution does'nt seem to be very logical, if any one figured it out, please upload your solution.