I have a specific transformation involving treating the Stirling numbers of the first kind as a matrix, given by, for some positive $b$
$$ C^{(b)} = (S_1^{(b)})^{T} \left(J_b\ \left(\frac{1}{2^{i}}{{b}\choose{i}}\right) \right) S_1^{(b)} $$
where $S_1^{(b)}$ is a $b+1 \times b+1$ matrix of Stirling numbers of the first kind, $J_b$ is the exchange matrix (matrix with 1s along the anti-diagonal), and the remaining matrix is simply a diagonal matrix with binomial coefficients divided by powers of two along the diagonal
schematically, this looks like, for example for $b=2$,
$$ C^{(2)} = \begin{bmatrix} 1 & 0 & 0 \\ 0 & 1 & -1 \\ 0 & 0 & 1 \\ \end{bmatrix} \begin{bmatrix} 0 & 0 & \frac{1}{2^{2}}{{2}\choose{2}} \\ 0 & \frac{1}{2^{1}}{{2}\choose{1}} & 0 \\ \frac{1}{2^{0}}{{2}\choose{0}} & 0 & 0 \\ \end{bmatrix} \begin{bmatrix} 1 & 0 & 0 \\ 0 & 1 & 0 \\ 0 & -1 & 1 \\ \end{bmatrix} $$
and the specific matrix elements are given by
$$ c^{(b)}_{k l} = \begin{cases} \frac{1}{2^b} s(b, l) & k = 0 \\ s(b, k) & l = 0 \\ \sum_{w=l}^{b-k} \frac{1}{2^w} {{b}\choose{w}} s(b-w, k) s(w, l) & else \end{cases} $$
Given the connections between changes of basis to rising/falling factorials, Stirling numbers, and binomial coefficients this feels like it has some deeper meaning, but this is of course complicated by the fact that we can't read this as a plain change of basis since $S_1^{(b)}$ is not unitary
For anyone who wants it, here's some Mathematica code to generate this matrix
cMat[b_] :=
With[
{
S = Table[StirlingS1[k, w], {k, 0, b}, {w, 0, b}],
J = Array[KroneckerDelta[#, b - #2] &, {b, b} + 1, 0],
W = DiagonalMatrix[Table[Binomial[b, w]/2^w, {w, 0, b}]]
},
Transpose[S] . (J . W) . S
]
cMat[3] // MatrixForm
$$ \left( \begin{array}{cccc} 0 & \frac{1}{4} & -\frac{3}{8} & \frac{1}{8} \\ 2 & -\frac{9}{4} & \frac{3}{4} & 0 \\ -3 & \frac{3}{2} & 0 & 0 \\ 1 & 0 & 0 & 0 \\ \end{array} \right) $$