Skip to main content

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$.

1 vote
0 answers
38 views

I've been exploring a question about composite Fibonacci numbers and I'm not sure if my findings are new or if this is a known problem. Definitions Let $F_n$ be the $n$-th Fibonacci number ($F_1=1, ...
Diamond Chess's user avatar
3 votes
0 answers
72 views

Consider the sequence $(x_n)_{n\ge 0}$ defined by $$x_0=1,\;\;\;x_1=1,$$ and for $n\ge 1$ $$x_{n+1}=\sum_{0\le i\lt j\le n}x_ix_j\;\;\;\;\;\;(1)$$ So $x_{n+1}$ is the sum of all pairwise products of ...
Augusto Santi's user avatar
7 votes
2 answers
331 views

As in the heading, I'm trying to write up a proof that the quotients of all Fibonacci numbers is not dense in $\mathbb{R_+}$. This is what I have come up with and would like to know if it's correct. ...
juliana's user avatar
  • 85
1 vote
0 answers
83 views

Compute the value of $$\sqrt{1 + F_2\sqrt{1 + F_4\sqrt{1 + F_6\sqrt{1 + F_{2n}\ldots}}}}$$ where $F_n$ denotes the $n$-th Fibonacci number with $F_0 = 0$, $F_1 = 1$. This is a problem from a sheet ...
Aklsh's user avatar
  • 51
2 votes
2 answers
247 views

I came across the following integral in an integration bee paper $$I=\int_{-\infty}^\infty \prod_{n=1}^\infty \frac{\sin(\frac{x}{F_{2n}})}{\frac{x}{F_{2n}}}dx$$ where $F_n$ is the $n$th Fibonacci ...
Milo Khong's user avatar
  • 1,313
2 votes
1 answer
203 views

Define $f_1=f_2=1$, $f_{n+2}=f_{n+1}+f_n$, and $p$ is an odd prime. Show that $$p\;\mid\;(p-1)!\sum_{i=1}^{p-1}\frac{f_i}{i}$$ I saw this in a sample of high school contest, but I don't know how to ...
Ayachi Nene's user avatar
12 votes
1 answer
820 views

I noticed that for a Fibonacci sequence starting with seeds $(2,1)$, there is an awful amount of primes in the first $20$ elements of the sequence ($11$ primes), far more than $(0,1)$'s prime density. ...
Aarav Trivedi's user avatar
0 votes
0 answers
37 views

Using the following python program, then we find for large $N$, $$\sum_{1}^{N}{(\phi - \frac{F_{n+1}}{F_n})} \approx 0.3184529640745031$$ But for the life of me I cannot find an exact value for this, ...
DylanColligan's user avatar
7 votes
1 answer
233 views

This reference contains two similar series, which are \begin{align} \arctan \frac{1}{F_{2n + 1}} = \arctan \frac{1}{F_{2n}} &- \arctan \frac{1}{F_{2n + 2}} \\[6pt] \Longrightarrow \qquad \sum_{n = ...
liZ's user avatar
  • 471
5 votes
1 answer
342 views

I was investigating the product $$\prod_{i = 0}^{\infty}\frac{p_i}{p_i - 1},$$ where $p_i$ is the $i$th prime number (and $p_0 = 2$). After failing to determine whether it diverges on my own, I found ...
Mathemagician314's user avatar
6 votes
1 answer
223 views

I have no idea how to prove if the following series converge: $$ \sum_{n=1}^{+\infty}\frac{(n\varphi-\lfloor n\varphi\rfloor)^n}{n} $$ where $\varphi$ is the golden ratio. None criterion clearly ...
Mathland's user avatar
  • 744
1 vote
1 answer
137 views

Fibonacci Algorithms This question came to me when I learned today that the Fibonacci sequence has a really neat $2\times 2$ matrix power defnition which enables a newbie to compute $n$th Fibonacci ...
Luna's Chalkboard's user avatar
10 votes
1 answer
359 views

Let $f(x) = 2x^2 + x - 1$ and $$ f^n(x) = (\underbrace{f \circ \dotsb \circ f}_{n \text{ copies of } f})(x). $$ Given $n \ge 1$, what is the number of real roots to $f^n(x) = 0$? Note: This is an ...
L. F.'s user avatar
  • 3,145
0 votes
0 answers
75 views

While I was reading a book, I found the identity \begin{align*} \sum_{k = 0}^{m} (-1)^{[(m - k)/2]}\mathscr{F}_{m}^{k} F_{n + k}^{m - 1} = 0 , \end{align*} where the $ [x] $ denotes the integer that ...
liZ's user avatar
  • 471
2 votes
0 answers
97 views

Let $\{F_n\}$ be the Fibonacci sequence defined by $$ F_0 = 0, \quad F_1 = 1, \quad F_{n+2} = F_{n+1} + F_n. $$ Initially, the problem I wanted to solve was simply to prove that $$ 5F_{n+2} + F_n $$ ...
Love_Combinatorics's user avatar

15 30 50 per page
1
2 3 4 5
153