A Fibonacci Number System |
|
Ken Levasseur |
The Fibonacci sequence is defined recursively by fn= fn-1 + fn-2, with f1 = f2 = 1.
A problem posed by Elias Lapakis in the December 2002 issue of Mathematics Magazine is to prove that every positive integer n can be expressed in the form
where k is a posive integer and integers a1, a2, ..., ak all equal 1 or 2.
Maybe after the deadline for solving the problem, I'll outline the algorithm behind this page. The output is a list of coefficients {a1,..., ak}. This list isn't unique, but the output given has, I believe the minimum length among all solutions.
UML WebMathematica Script Index