How to generate this type of sequence? $$ f(n, x) = x f'(n-1, x) \hspace{2 mm}, f(0, x) = e^x$$ How do I evaluate it for numerical values for $x = 1$ or any number?
Tell me more
×
Mathematica Stack Exchange is a question and answer site for
users of Mathematica. It's 100% free, no registration required.
|
Something like :
|
|||||
|
|
Leonid's method here can be easily adapted to your example:
|
|||||
|
|
|
This pair of definitions will do what you want:
It uses "memoisation" to save recomputing earlier results. |
|||||||
|