Whats with this sequence?



This sequence is the difference of each triangle
number and the corresponding Fibonacci number.
e.g.
Starting with the first triangle number and the first
Fibonacci f(1) number --

t---f = difference
1 - 1 =0
3 - 1 =2
6 - 2 =4
10- 3 =7
15- 5 =10
etc.
Gives this resulting sequence --

0,2,4,7,10,13,15,15,11,0,-23,-66,-142,-272,
-490,-851,-1444,-2413,...
Note: the 10th term (0) which is 55-55 = t(10)-f(10)= 0.

All fine and good but,why on the third delta row
beneath this sequence the Fibonacci sequence appears?

Except for the leading 1,1 the 3rd delta sequence is
the Fibonacci sequence excluding the double entry of[1,1]
at the beginning the following starts after the [1,1]--
0,1,1,2,3,5,8,13,21,34,55,89,144...

It just seems strange that this sequence would produce
the Fibonacci sequence in one of its deltas!
Also why did it not list the triangle numbers instead
on say the same or some other delta row?

Dan
.



Relevant Pages

  • N[(1/2)-k*(k-1/2)*(-3)/Factorial[k], 10000]
    ... in S_n.%C A000045 This is also the Horadam sequence.-Ross La ... %C A000045 The Fibonacci sequence,like any additive sequence,naturally ... representation for Lucas numbers.Many Fibonacci formulas ... Fibonacci Numbers%H A000045 Eric Weisstein's World of Mathematics, ...
    (sci.math)
  • Re: c language
    ... this sequence was described by the Indian mathematicians Gopala and Hemachandra in 1150, who were investigating the possible ways of exactly bin packing items of length 1 and 2. ... In the West, it was first studied by Leonardo of Pisa, who was also known as Fibonacci, to describe the growth of an idealised rabbit population. ... Every positive integer can be written in a unique way as the sum of one or more distinct Fibonacci numbers in such a way that the sum does not include any two consecutive Fibonacci numbers. ... For example, the solutions to reaction-diffusion differential equations can show such a patterning; in biology, genes often express themselves through gene regulatory networks, that is, in terms of several enzymes controlling a reaction, which can be modelled with reaction-diffusion equations. ...
    (comp.programming)
  • Re: Whats with this sequence?
    ... number and the corresponding Fibonacci number. ... Starting with the first triangle number and the first ... Gives this resulting sequence -- ... All fine and good but,why on the third delta row ...
    (sci.math)
  • Re: Whats with this sequence?
    ... number and the corresponding Fibonacci number. ... Starting with the first triangle number and the first ... Gives this resulting sequence -- ... difference table is all zeroes from its 3rd row onward. ...
    (sci.math)
  • ++var VS var++
    ... that ++var is faster than var++ as it just adds one and returns the value, ... The above code generates 17 seconds if the compiler is using optimising and ... As I previously said, I was experimenting with the fibonacci sequence, so I ...
    (alt.comp.lang.learn.c-cpp)