Re: nth term of a Series when d is not constant
- From: "Patrick Coilland" <pcoilland@xxxxxx>
- Date: Tue, 31 Jan 2006 20:49:05 +0100
Jeff nous a récemment amicalement signifié :
Hi All,
I have a Series (is this the correct name when the difference is not constant?) that progresses as follows:
2i, where i is the iteration.
For example, starting at 1:
1,3,7,13,21,31
3 - 1 = 2 7 - 3 = 4 13 - 7 = 6 ...
Can the nth term be calculated as in standard arithmetic series?
Hello Jeff
Sure : u_n = u_(n-1) + 2n u_(n-1) = u_(n-2) + 2(n-1) .... u_1 = u_0 + 2*1 u_0 = 1
Summing all these equalities : u_n = 1 + 2(n + (n-1) + (n-2) + ... + 1) u_n = 1+n(n+1)
So, u_n=n^2 + n + 1 is your response.
-- Patrick
.
- Follow-Ups:
- References:
- nth term of a Series when d is not constant
- From: Jeff
- nth term of a Series when d is not constant
- Prev by Date: Re: Archimedes Pi Algorithm
- Next by Date: Re: nth term of a Series when d is not constant
- Previous by thread: nth term of a Series when d is not constant
- Next by thread: Re: nth term of a Series when d is not constant
- Index(es):