|  |  D.12.2.8 expo Procedure from libraryatkins.lib(see  atkins_lib).
 
Example:Usage:
expo(z,k);
Return:
e^z to the order k
Note:
k describes the number of summands being calculated in the exponential power series
 |  | LIB "atkins.lib";
ring r = (real,30),x,dp;
number z=40.35;
expo(z,1000);
==> 334027593585379682.006907602277
 | 
 
 |