Is it possible to use the numbers 2, 0, 1 and 3 only once and use any arithmetic functions (+, -, *, /, indices, decimals, factorials, trig etc.) to make integers from 1 to 100?
For example:
- 1 = (2*0*3)+1
- 2 = (0*1*3)+2
- 3 = (0*1*2)+3
and so on...
Note: You can put the numbers together in the beginning (like 20+13=33), but you can't do it afterwards (like 2+0+1=3, and then you put a 3 at the end to make 33).