I was recently asked a question. If you were on a game show and there there is a prize of 1 million dollars. You are faced off against another player. The rules are simple the first player can pick any number say $1\le x\le999999$ then the second player can play any number $1\le y\le2x$ then the first player can play any number $1\le z\le2y$, and so forth. Your plays are added up after each play and the person to play so that the final sum is 1 million wins. You get to play first. Which number should you play to win every time.
Eg.
Player 1 can play any value in the range $1-999999$ || let's say he/she plays $333333$
Player 2 can now play any value in the range $1-666666$ || let's say he/she plays $666666$ now the total is $999999$
Player 1 can now play any value in the range $1-1333332$ || now player one would win because no matter what he plays he would be the first to 1 million
The closest I've gotten to solving this problem was a number smaller than $333333$.