RE: Generating Euler's Constant 05-08-2016, 07:47 PM
#13
(05-08-2016, 05:53 PM)Adorapuff Wrote: For calculating e wouldn't it be better to use something like (1 + 1/n)^n instead of using those infinite for loops?
I'm not sure, on the one hand the for loop approaches e a lot faster than (1+1/n)^n but as n gets large (1+1/n)^n requires a lot less operations.