Experience Requirement Table

This is a table of the experience required to get to the listed level from the previous level. For example, to get to level 1 from level 0 you need 110 experience; to get to level 2 from level 1 you need 121 experience; etc.

The max level is 110. The experience required caps at 2 million (around level 104).

The experience obeys the following recursive formula for level x:
xp_needed(x) = floor( xp_needed(x-1) * 1.1 ) for x >= 1,
xp_needed(0) = 100

LEVEL EXP NEEDED
1 110
2 121
3 133
4 146
5 161
... ...

You get the point.