I input 3 functions as following,
g[n_, r_]=(2*Z^(3/2)*Hypergeometric1F1[1 - n, 2, (2*r*Z)/n])/(E^((r*Z)/n)*n^(3/2));
g1[n_, r_]=g[n,r]/.Z->m Z;
g2[n_, r_]=g[n,r]/.Z->m Z \[Alpha];
How ever the following three integral results shows

Third Integral
Integrate[g2[n, r] g2[1, r] (m Z \[Alpha])/r r^2, {r, 0, \[Infinity]},
Assumptions ->
n \[Element] Integers && n > 1 && m > 0 && Z > 0 && \[Alpha] > 0]
MMA says that the third integral does not converge. But since $mZ\alpha$ always product together, I expected that the third integral should just be the first integral with $Z\to mZ\alpha$. How to understand such results?
My MMA version number is 11.0.0.0 and the platform is Linux x86(64-bit).