Hi,
In the following example, the value returned is e^1 instead of e^1.9:
Sum(1.9**k/factorial(k), (k, 0, oo)).evalf()
Is this a bug or am I doing something wrong?
Note that I get the expected value when doing
Sum(x**k/factorial(k), (k, 0, oo)).doit().subs(x,1.9)
Best regards,
Jeremie Knuesel