I have the following simple inductive equation:
$x_0 = n^k$
$x_1 = x_0 - {x_0}/{n^2}$
$x_i = x_{i-1} - {x_{i-1}}/{n^2}$
The question is - how can I represent $x_i$ in a non inductive manner? Specifically, I'm interested in figuring out whether for some constant $c$ independent of $n$ and $k$, $x_{n^c} < n^c$.

