Questions tagged [fibonacci-numbers]

Questions on the Fibonacci numbers, a special sequence of integers that satisfy the recurrence $F_n=F_{n-1}+F_{n-2}$ with the initial conditions $F_0=0$ and $F_1=1$.

The $n$th Fibonacci number $F_n$ is defined recursively, by

$$F_n = F_{n - 1} + F_{n - 2}$$

for $n > 1$, and $F_0 = 0,\; F_1 = 1$. There is a closed form expression, namely

$$F_n = \frac{\varphi^n - (1 - \varphi)^n}{\sqrt{5}}$$

where the golden ratio $\varphi$ is equal to $\frac{1 + \sqrt{5}}{2}$.

Combinatorial identities involving the Fibonacci numbers have been extensively studied, and the numbers arise frequently in nature and in popular culture.

Reference: Fibonacci number.

2190 questions
0
votes
1 answer

asymptotics of $F_n = F_{k-1} F_{n-k-1} + F_{k-1} F_{n-k} + F_{k-2} F_{n-k} $

Starting from $F_n = F_{k-1} F_{n-k-1} + F_{k-1} F_{n-k} + F_{k-2} F_{n-k} $ and letting $F_k \approx \phi^k$, I am hoping to find the corresponding statement for the Golden ratio: $\phi^n = 2 \phi^{n-2} + \phi^{n-1}$ or just $\phi^2 = 2 +…
cactus314
  • 24,438
0
votes
1 answer

Fibonacci Proof: Prove that $\frac{F_n-F_{n+16}}{7}$ is always an odd integer.

Im stuck on this question, i have to prove that $$\frac{F_n-F_{n+16}}{7}$$ is always an odd integer. I tried induction to do this but i just can't see how to prove it. thanks for any help
0
votes
1 answer

The relation between piano 12-scale and Fibonacci?

One of my books says there is a relation between the chromatic musical scale [CC#DD#EFF#GG#AA#BC] and the Fibonacci sequence. So...what's the relation?
HyperGroups
  • 1,393
0
votes
2 answers

Fibonacci like series - determination of 1st and 2nd element

Determining nth value of the Fibonacci series or Fibonacci like series is well known and easy to calculate. Can that be reversed? Can we calculate 1st and 2nd element of the series by giving the value of nth element? for example, for non Fibonacci…
0
votes
0 answers

Performing a set of Algorithms on Fibonacci Numbers

I was working on a self made Infinite Resistor Network Problem in Physics. I have removed the Physics part and only left the Mathematics here. Let us start with the $n$th Fibonacci Number $F_n$, our notation would be such that $F_1=1$. Now we…
Miracle Invoker
  • 3,200
  • 1
  • 3
  • 22
0
votes
2 answers

Are there alternative formulas for the Fibonacci sequence?

Except for the well known one , using the auxiliary quadratic equation, is there another formula, either using only elementary math or not? This is a nice elementary alternative which is nearly a formula.
OMGsh
  • 266
0
votes
0 answers

How to prove $F_{n-1}F_{n-2}-F_nF_{n-3}=(-1)^n$, where $F_n$ is nth fibonacci number?

I'm struggling to prove the following equation: $$ F_{n-1}F_{n-2}-F_nF_{n-3}=(-1)^n $$ You can verify this fact with this python code. I managed to simplify the equation a little, so that only $F_{n-2}$ and $F_{n-3}$…
g00dds
  • 187
0
votes
3 answers

Fibonacci terms with primal distances

Given any prime $p$, are there fibonacci numbers $F_k $ and $F_n$ such that $|F_n - F_k|=p^i , i \in \mathbb N$?
ARi
  • 444
0
votes
1 answer

Is the Fibonacci number-like function too trivial to investigate about?

To make some interesting recursive function, I generalized Fibonacci numbers to a function $f(x)$ such that satisfies the following condition: Given a function $g(x)$, such that $g(0)=0$ and $g(1)=1$, defined on the interval $x\in [0,2)$,…
0
votes
1 answer

What does Express $A_N$ in terms of $F_N$ mean with the Fibonacci Sequence?

The problem is: Consider the Fibonacci-like sequence $5,5,10,15,25,40, \ldots$ and let $A_N$ denote the $N$th term of the sequence. The questions are: Find $A_{10}$ Given that $F_{25} = 75,025$, find $A_{25}$. And now the question that is…
0
votes
1 answer

How do I prove the following formula for $n$-th fibonacci number?

I was solving competitive coding questions, when I read this discussion (via codeforces.com) about efficiently calculating the nth term of a fibonacci series. Here is the relevant comment: Think about the formula... $$F_i \;=\; F_{i-1} + F_{i-2}…
ph0en1x
  • 9
  • 1
0
votes
2 answers

Fibonacci Sequence & another pattern

While playing around with Python, I saw that if you take any non-zero integers p & q and perform the following operation, the values tend towards phi. Flip the numerator and denominator and complete the process by adding the value of the denominator…
0
votes
1 answer

Number Theory: Fibonacci Number Show that integers $n>1$, $f_{n+1}f_{n-1}={f_n}^2+{-1}^n$.

Help. I need help with a practice problem I am doing for while studying for my exam. I started working on the problem. I used mathematical induction. We are given: F_(n+1)=F_n +F_(n+1) and F_1=F_2=1 Step 1: I prove the base case: n=1 f_1+1 f_1+1 =…
0
votes
1 answer

Find the length of a Fibonacci sequence based upon its sum

Im trying to make a function that finds the length of a fibonacci sequence based upon its sum I know $\sum f_n = f_{n+2} + f_2$ I know $f_n = \cfrac{\varphi^n-({-\varphi})^n}{\sqrt 5}$ so, $\sum f_n =…
0
votes
0 answers

Patterns made of Fibonacci's sequence

I was trying to test music with math, so why not Fibonacci? I'd use it lowering every number of the sequence to 7 or minor, I mean, if a certain number n is greater than 7, I'd do n-1, until getting something lower than 7, then assimilate it to some…
Feripinho
  • 173