I have an expression $t \equiv t(x)$,
\begin{equation} t = 2^{-2+\frac{a}{2}} c^{1-\frac{a}{2}} \Gamma\left(-1+\frac{a}{2}, \frac{c}{2} x^2\right) \end{equation}
where $\Gamma\left(-1+\frac{a}{2}, \frac{c}{2} x^2\right)$ is the incomplete gamma function, and $a,c$ are constants. In general $0<a<1, 0<c<1$, but I chose specific values $a=\sqrt{20/3}, c=4/25$.
I have another expression $f \equiv f(x)$,
\begin{equation} f = x^{2+2a} e^{c\, x^2 \,/2}. \end{equation}
I would like to find a way to write $f \propto t^b$ for some power $b$. I am interested in the regime where $x \rightarrow \infty$ or at least $x \gg 1$. Since the function $\Gamma\left(-1+\frac{a}{2}, \frac{c}{2} x^2\right)$ is non-elementary, there is no trivial way to invert this to give $x \equiv x(t)$ such that $f \propto t^b$. So, I am thinking maybe there is a way to have an approximation $f \sim t^b$ and use some numerical technique to achieve this.
I have tried fitting $f(x)$ with $k t^b$ for some parameters $k,b$ in order to force the search of the relation $f(x) \sim t^b$. Although I don't think this is a good way to approximate the relation.
t[a_, c_, x_] := 2^(-2 + a/2) c^(1 - a/2) Gamma[-1 + a/2, c x^2/2]
f[a_, c_, x_] := x^(2 + 2 a) Exp[c x^2/2]
table = Table[Log[f[Sqrt[20/3], 4/25, x], 10], {x, 10, 50, 1}];
fit = FindFit[table, k t^b, {k, b}, t]
{k -> 0.1169332281, b -> -0.4908628423}
I would like to ask for some guidance or some insights on how to execute this.
Edit: To be consistent, I should have chosen $0< a <1$, say $a=1/3$. Although it is still very informative if there is a power-law solution for parameters that go outside the range of the given.

Asymptotic[(f[x]*t*c)/ (x^(-2 + 2 Sqrt[15])), x -> Infinity]is(*1*)so $f$ grows sub-exponentially with $1/t$ at least. $$f \propto \frac{x^{-2 + 2 \sqrt{15}}}{c~t}$$ for large $x$. You should probably make sure I copied down the equations correctly though. $\endgroup$