Lucas Number — Definition, Formula & Examples
A Lucas number is a term in the integer sequence 2, 1, 3, 4, 7, 11, 18, 29, ... where each term is the sum of the two preceding terms, starting with 2 and 1.
The Lucas sequence is defined by the recurrence relation for , with initial conditions and . It shares the same recurrence as the Fibonacci sequence but differs in its starting values.
Key Formula
Where:
- = The nth Lucas number
- = The previous Lucas number
- = The Lucas number two positions before
How It Works
To generate Lucas numbers, start with and . Then add the two most recent terms to get the next one. For instance, , , , and so on. The ratio of consecutive Lucas numbers approaches the golden ratio , just as it does for Fibonacci numbers. In fact, there is a direct connection: , where denotes the th Fibonacci number.
Worked Example
Problem: Find the 8th Lucas number, L_8.
List known values: Write out the sequence starting from the initial conditions.
Apply the recurrence: Add the two most recent terms to find L_8.
Answer:
Why It Matters
Lucas numbers appear in number theory proofs involving Fibonacci identities and in primality testing algorithms. Understanding this sequence strengthens your ability to work with recurrence relations, a skill used throughout discrete mathematics and computer science.
Common Mistakes
Mistake: Confusing the starting values with Fibonacci's. Students often begin the Lucas sequence with 0 and 1 (or 1 and 1) instead of 2 and 1.
Correction: The Fibonacci sequence starts . The Lucas sequence starts . The recurrence rule is identical, but the initial values are different and produce an entirely different sequence.
