Suppose $h$ is distributed according to Marchenko-Pastur law with scale parameter $\sigma$. Is there a closed form expression or a good approximation for the following two quantities?
$$\text{mgf}(s)=E_h[\exp(h s)]$$
$$f(s)=E_h[h\exp(h s)]$$
Only negative values of $s$ need to be considered.
Motivation: these functions should describe expected error and expected loss curves for gradient descent on large linear problems as detailed in this paper by Paquette - https://cypaquette.github.io/Research/High_dimensional_optimization_survey.pdf
I'm not sure that the following gets you what you need for the mgf but here is one approach to obtain a more specific form of the mgf:
Mathematica can produce the moments in the following manner:
Looking up the sequence of coefficients in oeis.org finds the formula for the $n$-th moment:
Then construct the mgf with brute force:
$$\sum _{i=1}^{\infty } \frac{s^i \sigma ^{2 i} \, _2F_1(1-i,-i;2;\lambda )}{i!}+1$$
For some values of $\sigma$ and $\lambda$ closed forms exist (again, in the eye of the beholder):
The same thing can be done with $f(s)$:
$$\sum _{i=0}^{\infty } \frac{s^i \sigma ^{2 (i+1)} \, _2F_1(-i-1,-i;2;\lambda )}{i!}$$
with
resulting in $$\frac{e^{2 s \sigma ^2} I_1\left(2 s \sigma ^2\right)}{s}$$
where $I_n(z)$ is the modified Bessel function of the first kind.