|
[Date Index]
[Thread Index]
[Author Index]
Re: Limit
- To: mathgroup at smc.vnet.net
- Subject: [mg64737] Re: Limit
- From: Takamura <franek at nospam.onet.pl>
- Date: Thu, 2 Mar 2006 06:47:21 -0500 (EST)
- References: <dtrvmt$lv0$1@smc.vnet.net>
- Sender: owner-wri-mathgroup at wolfram.com
Sinan Kapçak wrote:
> i want to find the value of the limit
>
> 1+(2/(3+(4/(5+(6/(7+...
>
> how can i do that with Mathematica?
>
(* the first answer were wrong *)
Table[{i, 1 + N[FromContinuedFraction[Table[(j + 1)/j, {j, 2, i, 2}]],
100]}, {i, 450, 500, 10}]
Last[%][[2]]
--
takamura
Prev by Date:
simplifying a summation / integral
Next by Date:
No mesh with Graphics3D
Previous by thread:
Re: Re: Limit
Next by thread:
Re: Limit
|