I have to prove
$$S(n,n-2) = \frac{n(n-1)(n-2)(3n-5)}{24},$$
for Stirling numbers of the second kind.
I want to show it via induction on $n$ as he did on this problem: Induction with Stirling numbers of the second kind (3 "bins")
Recursion for stirling numbers of the second kind: $$S(n,k)=\begin{cases} &0 & n < k\\ &1 &n=k=0 \\ &0 &n \in \mathbb{N} , k =0 \\ &0 &n=0, k \in \mathbb{N} \end{cases}$$
Here are my thoughts:
definition: $n > k, n,k \in\Bbb N,$ so for $n\geq3,$ we have the base case for $n=3$
\begin{align*} S(3,1) &= S(2,0) + S(2,1)\\ &=0 + S(1,0) + S(1,1) \\ &=0 +0+S(0,0)+S(0,1)\\ &=1\\ \end{align*}
Thus for $n=3$ our equation holds.
Inductive Step. Let's assume $n\geq 3$ and $S(n,n-2) = \frac{n(n-1)(n-2)(3n-5)}{24}.$
Then by the recurrence relation of Stirling numbers of the second kind observe that
\begin{align*} S(n+1,n-1) &= S(n,n-2) + (n-1)S(n,n-1)\\ &= \frac{n(n-1)(n-2)(3n-5)}{24}+ (n-1)S(n,n-1) \end{align*}
Now, I don’t know how to go on. It's analogous to this: Induction with Stirling numbers of the second kind (3 "bins")
But I don’t know how he gets from $S(k,2)$ to $2^{k-1}-1$.