I evaluated
Integrate[(1 + x/n)^n*Exp[-x], {x, 0, Infinity}] .
thinking the answer should be approximately $\sqrt{\pi n/2}$. Mathematica gave me
ConditionalExpression[E^n n ExpIntegralE[-n, n], Re[n] > 0 || n ∉ Reals]
which I am not sure how to interpret. How can I get Mathematica to give me something closer to what I was expecting?

Integrate[(1 + x/n)^n*Exp[-x], {x, 0, Infinity} , Assumptions -> {n \[Element] Integers, n > 0}], i.e. use the assumptions. – b.gatessucks Mar 11 at 14:56