Hi, first time here.
My professor gave us a puzzle problem that we discussed in class that I could elaborate on if requested. But I interpreted the puzzle and formed a recursive function to model it which is as follows:
f(n) = n * f(n-1) / (n - 1) + .01, where f(1) = .01 and n is natural
The question that is asked is when (if ever!) does f(x) = 1000x. About half concluded that it eventually will equal (they didn't have the formula I made) and that x would be damn near infinity.
MY personal question is, can that function be reduced so that it isn't recursive? And so that it doesn't need to be solved by brute force computer algorithm (which would be about 3 lines of code).

