Let
- $a(n)$ be A375540, i.e., an integer sequence such that $$ a(n) = 2^n n! [x^n] (1/2 - \exp(-x))^n. $$
- Start with vector $\nu$ of fixed length $m$ with elements $\nu_i = 1$ (that is, $\nu = \{1,1,\dotsc,1\}$), set $t := \nu$ and for $i$ from $1$ to $m-1$, for $j$ from $i$ to $1$ (with decreasing step equals $1$) apply $\nu_j := i(\nu_j + \nu_{j+1})$ and $t_{i+1} := \nu_1$ (after ending each cycle for $j$).
I conjecture that after the whole transform we have $a(n) = t_{n+1}$.
Note that here $m$ is any natural number. In other words, if you need to compute $n$ first terms of $a(n)$ starting from $a(0)$ up to $a(n-1)$ just set $m = n$. Obviously, $t$ is a vector, so $t_i$ is the $i$-th element of it.
Here is the PARI/GP program to check it numerically:
a(n) = 2^n*n!*polcoeff((1/2 - exp(-x+x*O(x^n)))^n, n, x)
upto(n) = {my(v, t);
v = vector(n, i, 1);
t = v;
for(i=1, n-1,
forstep(j=i, 1, -1,
v[j] = i*(v[j] + v[j+1]));
t[i+1] = v[1]);
t}
test(n) = vector(n, i, a(i-1)) == upto(n)
For example, here is the PARI/GP output for $n=5$ where we print vectors [v, t] after ending each cycle for i:
[[2, 1, 1, 1, 1], [1, 2, 1, 1, 1]]
[[12, 4, 1, 1, 1], [1, 2, 12, 1, 1]]
[[126, 30, 6, 1, 1], [1, 2, 12, 126, 1]]
[[1880, 344, 56, 8, 1], [1, 2, 12, 126, 1880]]
UPD1: changing $\nu_i = 1$ to $\nu_i = x^i$ leads to another conjecture: $$ a(n) = \sum\limits_{i=0}^{n} \binom{n}{i} \sum\limits_{j=0}^{i} \binom{i}{j} (n-j)^n (-1)^j = \sum\limits_{k=0}^{n} \binom{n}{k} k^n 2^k (-1)^{n-k}. $$
Here is the PARI/GP program to check it numerically:
a(n) = 2^n*n!*polcoeff((1/2 - exp(-x+x*O(x^n)))^n, n, x)
b(n) = my(v1); v1 = Vec((2-x)^n); sum(i=0, n, i^n*v1[i+1])
test(n) = a(n) == b(n)
Is there a way to prove it?