Saturday, January 3, 2015

Pattern Recognition - 12

Find the next two numbers in the series.

24,32,42,23,48,64,84,46,_,_,......


Answer

There are two patterns 

1)Reverse numbers
2)Number multiplied by 2

24,32

Next two numbers will be the reverse of previous ones

24-----  42
32------ 23

After that 48=24 *2
               64=32* 2

Next two numbers in the series will be taken by multiplying previous two original(non-reverse) numbers each by 2

48*2=96
64*2=128

24,32,42,23,48,64,84,46,96,128,......

No comments:

Post a Comment