I don't know how to do sigma equations, but my question is:
1/1 + 1/2 + 1/3 + 1/4 + 1/5.. .. + 1/infinity = ?
can this be calculated? is the answer infinity or does it stop at a value?
I tried to create the sequence in c# (very simple program).
double x = 0;
double n = 1;
while (true)
{
x = x + 1 / n;
Console.WriteLine(x);
i++;
}
cmd is capable of calculating 10k sequences per second. I can see that the value is slowing down. At stage 10.000.000 the value is about 16,7.
How much is the value at n=infinity?