fibonacci

  1. C

    Let {a_n} (n = 1 to infinity) be the Fibonacci sequence a_1 = a_2 = 1,

    My first plan of attack would be to find a formula for the nth term as a function of n directly, without making reference to the Fibonacci sequence. Presumably, it will be a polynomial in phi.
  2. W

    Let {a_n} (n = 1 to infinity) be the Fibonacci sequence a_1 = a_2 = 1, a_n

    = a_(n-1) + a_(n-2) (n greater than? or equal to 2), phi the golden ratio (1+sqrt(5))/2. Find the sum of the series sum for n = 0 to infinity of (a_n * phi - a_(n+1))^2.
Back
Top