Lucas Sequence with 1 and 3 as initial values
Why is it convention to have recursive sequences like the Fibonacci and Lucas numbers start at 0? For example Fibonacci Sequence has $F_{0} = 0$, $F_{1} = 1$ and $F_{2} = 1$, whilst Lucas's sequence has $L_{0} = 2$, $L_{1} = 1$ and $L_{2} = 3$.
For the Fibonacci Sequence, having $F_{0} = 0$ does not really have any impact, but for the Lucas Sequence, the first prime number, "$2$", is added there when, in my opinion, it is not really required when the Lucas Sequence can be defined as $L_{1} = 1$ and $L_{2} = 3$, and $L_{n} = L_{n-1} + L_{n-2}$ for $n < 2$ in it's recursive rule.
I ask because I am writing a javascript program which generates the Lucas prime numbers and I was pondering which is better: to start the list with "$2$" or "$3$"?