Fibonacci Prime — Definition, Formula & Examples
A Fibonacci prime is a number that belongs to the Fibonacci sequence and is also a prime number. For example, 2, 3, 5, 13, and 89 are all Fibonacci primes.
A Fibonacci prime is an element of the Fibonacci sequence, defined by , , and for , such that is a prime number (having exactly two distinct positive divisors: 1 and itself).
Key Formula
Where:
- = The nth Fibonacci number
- = The position in the sequence (positive integer)
How It Works
To determine whether a Fibonacci number is a Fibonacci prime, you first generate the Fibonacci sequence and then test each term for primality. The early Fibonacci sequence is 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ... From this list, you check which entries are prime. A useful fact: if is composite (and ), then is also composite, so you only need to check Fibonacci numbers at prime indices (though a prime index does not guarantee a Fibonacci prime). It remains an open question whether infinitely many Fibonacci primes exist.
Worked Example
Problem: Is the 11th Fibonacci number a Fibonacci prime?
Step 1: Generate the Fibonacci sequence up to the 11th term.
Step 2: Identify the 11th term.
Step 3: Test whether 89 is prime. Check divisibility by primes up to : 89 is not divisible by 2, 3, 5, or 7.
Answer: is prime, so 89 is a Fibonacci prime.
Why It Matters
Fibonacci primes sit at the intersection of two fundamental structures in number theory — recursive sequences and prime numbers. They appear in competition math problems that ask students to connect divisibility properties of the Fibonacci sequence with primality testing. The open question of whether infinitely many exist illustrates how accessible-sounding problems can remain unsolved.
Common Mistakes
Mistake: Assuming every Fibonacci number at a prime index is itself prime.
Correction: A prime index is necessary (for to be prime with ), but not sufficient. For example, , which is composite despite 19 being prime.
