I need a way to take an equation like m= 5^n and then change the decimal place of the answer by a scalable order of magnitude depending on the size of the end result.. Problem is I need the decimal place to be changed before the exponent so if you did 2^61 you would get 2305843009213693952. I want to do 2^x and get something like 23058430.09213693952. I also need 2^2 =4 to be changed to be 2^x =.000000000004. Can I do this or will it not produce a constant instead of a variable?
(I can not have (2^61)/x to achieve the decimal point shift.)