If you write out the sequence in binary with each next number falling below the previous number you'll start to notice a pattern in the arrangement of ones and zeroes.
00000000 = 0
00000000 = 0
00000001 = 1
00000011 = 3
00000010 = 2
00000110 = 6
00000101 = 5
00001101 = 13
00001100 = 12
00001110 = 14
00001011 = 11
00011011 = 27
00011000 = 24
00111000 = 56
00110001 = 49
00110111 = 55
.
.
.
The ones column repeats in 2s, the twos column repeats in 3s, the fours column repeats in 5s, the eights column repeats in 7s...
Each larger column repeats in order of prime numbers. Therefore, the next number in the sequence should be 56. |