Re: What is the general formula for the series 1, 2, 4, 7, 11, .........
- From: Virgil <virgil@xxxxxxxxxxx>
- Date: Sun, 21 Jan 2007 18:17:27 -0700
In article <fLGdnQ64XLkdninYnZ2dnUVZ8taknZ2d@xxxxxx>,
"Nick" <tulse04-news1@xxxxxxxxxxx> wrote:
"Alfred Flaßhaar" <BueroFlasshaar@xxxxxxxxxxx> wrote in message
news:51gvdtF1k75o7U1@xxxxxxxxxxxxxxxxxxxxx
pacman18_2008 wrote:
What is the general formula for the series: 1, 2, 4, 7, 11,....???
(...)
Consider the differences between the numbers. You will find out a well
known set. Write some members of your sequence in a recursive form and
after this write some members by replacing backward. Vou will find a well
known sum. Make an assumption an proof it using the method of induction.
I have never come across or forgotten what the recursive form is. I
understand from Googling that a recursive form is as compared with a closed
form.
y(n+1)=g(y(n))
whereas a closed form can express y=f(n) directly.
Nick
In this case, a recursion formula involving the prior two members of
the sequence, a la the Fibonacci sequence, is
y(n+2) = 2*y(n+1) - y(n) + 1
Alternately, using finite differences,
y: 1 2 4 7 11...
dy: 1 2 3 4 ...
ddy: 1 1 1 ...
indicates a quadratic closed form formula, which can be fitted by trial
an error, or a number of other ways.
.
- Follow-Ups:
- References:
- What is the general formula for the series 1, 2, 4, 7, 11, .........
- From: pacman18_2008
- Re: What is the general formula for the series 1, 2, 4, 7, 11, .........
- From: Alfred Flaßhaar
- Re: What is the general formula for the series 1, 2, 4, 7, 11, .........
- From: Nick
- What is the general formula for the series 1, 2, 4, 7, 11, .........
- Prev by Date: Re: Cantor Confusion
- Next by Date: Re: upper bounds for Stirling numbers of the first kind. Was: seeking bounds on size of coefficients of these polynomial
- Previous by thread: Re: What is the general formula for the series 1, 2, 4, 7, 11, .........
- Next by thread: Re: What is the general formula for the series 1, 2, 4, 7, 11, .........
- Index(es):
Relevant Pages
|