Let $X$, $Y$ be two independent random variables defined on the real line by a fixed distribution $\mathcal{D}$. Let $Z = XY$, the product of $X$ and $Y$.
For which choices of $\mathcal{D}$ is $Z$ uncorrelated with the individual variables $X, Y$, so $\rho_{Z, X} = \frac{\text{cov}\{Z, X\} } {\sigma_{Z} \sigma_{X}} = 0$?
As an example, for $X, Y \sim \mathcal{N}(0,1)$
> N <- 1000000
> set.seed(1)
> x <- rnorm(N)
> y <- rnorm(N)
> xy <- x*y
> cor(xy, x)
[1] -0.0001072026
this seems to be the case.
I would be grateful for pointers to (i) a derivation of this for the Gaussian case and (ii) any results regarding the characteristics of the density that determine whether this independence holds.