It's all just convention, but I opt for 0,1,1,2,3,5,...,
and I have a reason.
If you define F_0 = 0, F_1 = 1,
than the nice equation
gcd(F_n, F_k) = F_{gcd(n,k)} is true,
and as a special case F_k divides F_n iff k divides n.
This nice equation would be much more ugly if F_0 != 0.
Update: in case anyone's interested, any integer
sequence defined
by a second order homogenous linear recursion and
starting element 0 has this property. That is, if
s_0 = 0, s_1 is and integer, and s_{k+2} = A s_{k+1} + B s_k
for given A, B integers; then
gcd(s_n, s_k) = s_{gcd(n,k)}.
Update 2006 nov 4: the above paragraph is false. Sorry.
-
Are you posting in the right place? Check out Where do I post X? to know for sure.
-
Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
<code> <a> <b> <big>
<blockquote> <br /> <dd>
<dl> <dt> <em> <font>
<h1> <h2> <h3> <h4>
<h5> <h6> <hr /> <i>
<li> <nbsp> <ol> <p>
<small> <strike> <strong>
<sub> <sup> <table>
<td> <th> <tr> <tt>
<u> <ul>
-
Snippets of code should be wrapped in
<code> tags not
<pre> tags. In fact, <pre>
tags should generally be avoided. If they must
be used, extreme care should be
taken to ensure that their contents do not
have long lines (<70 chars), in order to prevent
horizontal scrolling (and possible janitor
intervention).
-
Want more info? How to link or
or How to display code and escape characters
are good places to start.
|