I. Fibonacci and Lucas numbers
$$F_n = 1,1,2,3,5,8,13,\dots\\[7pt] L_n = 2, 1, 3, 4, 7, 11, 18\dots$$
There is a relationship between two consecutive terms such that,
$$M(x,y) = x^2+xy-y^2$$ $$M(F_n,\,F_{n+1}) = \pm1$$ $$M(L_n,\,L_{n+1}) = \pm5$$
with the sign depending on whether $n$ is odd or even. Of course, $d=5$ is prominent in the golden ratio and Fibonacci numbers. It turns out this may have a cubic counterpart.
II. Tribonacci and Trucas numbers
$A_n = 1, 1, 2, 4, 7, 13, 24, 44,\dots$ (A000073)
$B_n = 1, 3, 4, 8, 15, 27, 50, 92,\dots$ (A007486)
and the latter is quaintly called the Trucas numbers, in analogy to the Lucas numbers above. Define,
$$\alpha(x,y,z) = x^3 + 2 y^3 + z^3 - 2 x y z + 2 x^2 y + 2 x y^2 - 2 y z^2 + x^2 z - x z^2 $$
then we conjecture three consecutive terms obey,
$$\alpha(A_n,\,A_{n+1},\,A_{n+2}) = 1$$ $$\;\alpha(B_n,\,B_{n+1},\,B_{n+2})\, =\, 11$$
where solving for the tribonacci constant in $P_1(r)=r^3-r^2-r-1=0\,$ needs $d=11$. Note that just like the cubic Pell equation, then $\alpha$ factors into linear forms in $(x,y,z)$ over a cubic extension,
$$\alpha(x,y,z) = (x - r_1 y + r_1^2 y + r_1 z)\,(x - r_2 y + r_2^2 y + r_2 z)\,(x - r_3 y + r_3^2 y + r_3 z)$$
where the $r_k$ are the three roots of $P_1(r)=0$.
III. Padovan and Perrin sequence
$C_n = 1, 1, 1, 2, 2, 3, 4, 5, 7, 9, 12,\dots$ (A000931)
$D_n = 3, 0, 2, 3, 2, 5, 5, 7, 10, 12, 17\dots$ (A001608)
Define,
$$\beta(x,y,z) = x^3 + y^3 + z^3 - 3 x y z + x y^2 - y^2 z + 2 x^2 y - x z^2 $$
then,
$$\beta(C_n,\,C_{n+1},\,C_{n+2}) = 1$$ $$\;\beta(D_n,\,D_{n+1},\,D_{n+2})\, =\, 23$$
where solving for the plastic constant in $P_2(r)=r^3-r-1=0\,$ needs $d=23$. Similarly, given the three roots $r_k$ of $P_2(r)=0$, then $\beta$ factors as,
$$\beta(x,y,z) = (x + r_1^2 y + r_1 z)\,(x + r_2^2 y + r_2 z)\,(x + r_3^2 y + r_3 z)$$
IV. Narayana and companion sequence
$E_n = 1, 1, 1, 2, 3, 4, 6, 9, 13, 19, 28,\dots$ (A000930)
$F_n = 1, 1, 4, 5, 6, 10, 15, 21, 31, 46,\dots$ (A001609)
Define,
$$\gamma(x,y,z) = x^3 + y^3 + z^3 - 3 x y z + x y^2 + y^2 z + x^2 z - 2 y z^2$$
then,
$$\gamma(E_n,\,E_{n+1},\,E_{n+2}) = 1$$ $$\;\gamma(F_n,\,F_{n+1},\,F_{n+2})\, =\, 31$$
where solving for the supergolden ratio in $P_3(r)=r^3-r^2-1=0\,$ needs $d=31$. Given the three roots $r_k$ of $P_3(r)=0$, then,
$$\gamma(x,y,z) = (x - r_1 y + r_1^2 y + r_1 z)\,(x - r_2 y + r_2^2 y + r_2 z)\,(x - r_3 y + r_3^2 y + r_3 z)$$
So $\alpha$ and $\gamma$ have the same factorization but different $P_n(r)=0$.
V. Question
Q: So do the six sequences obey the relationships $(\alpha,\,\beta,\,\gamma)$ and the conjectured values?
P.S. For those curious how $(\alpha,\,\beta,\,\gamma)$ were found, I simply used three large enough consecutive terms, say the $A_{100},\,A_{101},\,A_{102}$ terms, and used the Integer Relations subroutine of Mathematica to find a relation between the monomials $x^3,x^2y,xyz,\dots$ A result with single-digit coefficients usually is the correct one.