padovan numbers are:
P(0)=1, P(1)=1, P(2)=1, P(3)=2, P(4)=2, P(5)=3, 4, 5, 7, 9, 12, 16, 21, etc
WHERE P(n) = P(n-2) + P(n-3)
fibonacci numbers are:
F(0)=0, F(1)=1, F(2)=1, F(3)=2, F(4)=3, F(5)=5, 8, 13, 21, etc
WHERE F(n) = F(n-1) + F(n-2)
Question
My question is, why not use P(0)=0 as follows:
P(0)=0, P(1)=1, P(2)=1, P(3)=1, P(4)=2, P(5)=2, P(6)=3, 4, 5, 7, 9, 12, 16, 21, etc
Since this satisfies P(n) = P(n-2) + P(n-3)
Also, when looking at the Fibonacci squares we see the first visible term of the sequence is F(1)
With the Padovan triangles the first visible term of the sequence is P(0)?
Which seems inconsistent to me. Can anyone give a mathematical explanation as to why P(0)=1 ... many thanks


The OEIS sequence A000931 is "Padovan sequence (or Padovan numbers): a(n) = a(n-2) + a(n-3) with a(0)=1, a(1)=a(2)=0." In contrast, your sequence $P(n) = A000931(n+5) = A134816(n+1).$ The OEIS entry also states
The point is that it is a matter of convenience and choice of where to start the sequence and what index to use. The same holds for the Fibonacci numbers. Some people choose $F(0)=F(1)=1$. About your specific choice of $P(0)=P(1)=P(2)=1,$ that is exactly A134816 except offset differs by 1. You are welcome to submit your different offset sequence to the OEIS, but unlikely to succeed.
However, the English Wikipedia article Padovan sequence uses your notation, initial values, and contains the spiral of triangles. It mentions the OEIS sequence A000931 but neglects to mention the indexing difference.