Say you have a reucrrence $x_{n+1} = 3x_n+2$. Though, it is a inhomogenous, it can be represented by a linear system
$$\begin{bmatrix} x_{n+1}\\1\end{bmatrix} = \begin{bmatrix} 3 & 2 \\ 0 & 1\end{bmatrix}\, \begin{bmatrix} x_n\\1\end{bmatrix}.$$
In case $X_n=\begin{bmatrix} x_{n}\\1\end{bmatrix}$ is an eigenvector,
$$X_{n+1} = \begin{bmatrix} 3 & 2 \\ 0 & 1\end{bmatrix}\,X_n = \begin{bmatrix} 3 & 2 \\ 0 & 1\end{bmatrix}\, \begin{bmatrix} x_n\\1\end{bmatrix} = s\,\begin{bmatrix} x_{n}\\1\end{bmatrix} = sX_n.$$
Applying eigenvector is identical to scaling it by eigenvalue, $s$.
I have seen somewhere that I can use powers of $s$ to represent $x_n$: $\begin{bmatrix} x_{n+1}\\x_n\end{bmatrix} = \begin{bmatrix} s^{n+1}\\s^n\end{bmatrix}$. Since s is also an eigenvalue, this may lead to some confusion. Neverless, I think that using the polinomials of eigenvalue symbol is worth and popular in Laplace domain, where you have powers of $s$ for time shifting. You multiply you vector by $s$ and get the next state. This blurs the border between applying the operator and scaling with eigenvalue. Such abuse of notation is also advantageous because we clearly see why $X_{n+1} = sX_n$: $X_2 = \begin{bmatrix} s^2\\s\end{bmatrix} = s\,\begin{bmatrix} s\\1\end{bmatrix} = s X_1.$ It was not that visible in case of $X_{n} = \begin{bmatrix} x_n\\x_{n-1}\end{bmatrix}.$
So, recurrence is $s^2 = 3s + 2$ and, in case $s$ is eigenvalue, matrix form is
$$\begin{bmatrix} s^2\\s\end{bmatrix} = s\,\begin{bmatrix} s\\1\end{bmatrix} = \begin{bmatrix} 3 & 2 \\ 0 & 1\end{bmatrix}\, \begin{bmatrix} s\\1\end{bmatrix}.$$
Normally, vector components are indexed. Every next component is index+1 the previous one. In case indexes are replaced with powers, we have the components related by s: all components of our eigenvectors are powers of eigenvalue s! This should work for every diagonalizable matrix. I just came up with concrete example to examine some concrete eigenvectors.
You may spot the eigenvalues. The system has a feedback of power 3, resulting in the first eigenvalue $s=3$ (it is coupled with eigenvector $X=\begin{bmatrix} 1\\0\end{bmatrix}$). The second eigenvalue, $s= 1$, keeps the contribution 2 constant (it is coupled with eigenvector $\begin{bmatrix} -1 \\ 1\end{bmatrix}$). The problem is that I see that the components of these vectors, $\begin{bmatrix} 1\\0\end{bmatrix}$ and $\begin{bmatrix} -1 \\ 1\end{bmatrix}$ are not the powers of $s$. They do not have the form $\begin{bmatrix} s^{n+1} \\ s^{n}\end{bmatrix}$! Why they should not?