A number sequence is as follows:
5, 100, 6, 200, 7, 400, 8, 800, 9, 1600, 10, 3200, ...
Given that 5 is at position 1, create a function that returns the number found at position num in the sequence.
littleBig(4) ➞ 200
littleBig(5) ➞ 7
littleBig(28) ➞ 819200
You can expect to be only given valid inputs.