I want to find limit of infinite nested radical
√1+2!√22+3!√33+...
but I don't know how to define this expression in Mathematica. How can I define it and find the limit:
limn→∞√1+2!√22+3!√33+...+n!√nn
Answer
Here is an approach using FixedPoint
, where I keep the output in exact form to see how many terms are needed to satisfy a given tolerance:
Clear[x];
step[{n_, f_}] := {n + 1, f /. x -> (n^n + x)^(1/n!)};
tolerance = $MachineEpsilon;
sum =
Last@FixedPoint[step, {2, Sqrt[1 + x]},
SameTest -> (tolerance > Abs[Last[#1] - Last[#2]] /.
x -> 0 &)] /. x -> 0
√1+√4+6√27+24√256+120√3125+720√46656+720√7
N[sum, 16]
1.843075984668544
tolerance = 10^-40;
sum =
Last@FixedPoint[step, {2, Sqrt[1 + x]},
SameTest -> (tolerance > Abs[Last[#1] - Last[#2]] /.
x -> 0 &)] /. x -> 0
In FixedPoint
, the function step
handles both the index n
and the iterated root f
. The dummy variable x
is used to insert the next root.
Comments
Post a Comment