I'd like to compute the following expectation ($U$ and $V$ are independent and Gaussian) $a_{k,p}=E(|U|^p|U+\sqrt{k-1}V|^p)$
Is there a way to directly compute those expectations in sage ?
If I write it down, I obtain a double integral which I already tried to compute with maxima like this load(distrib); n(x):=pdf_normal(x, 0, 1); iexp: integrate(abs(u+sqrt(k-1)v)^pn(v), v, minf, inf); but to no avail.
NB: The absolute central moment $a_{1,p}$ can be easily obtained with maxima with ratsimp(integrate(abs(x)^p*n(x), x, minf, inf)); but not the abovementioned double integral.
Any hint?