- Let $B_n$ be the Bernoulli number.
- Let $a(n)$ be A110501 (i.e., unsigned Genocchi numbers (of first kind) of even index). Here $$ a(n) = 2(4^n-1)B_{2n}(-1)^{n-1}. $$
- Let $s(n,k)$ be the (signed) Stirling number of the first kind.
- Let $n \brace k$ be the Stirling number of the second kind.
- Let $T(n,m)$ be an integer coefficients such that $$ T(n,m) = \sum\limits_{i=1}^{m+1}(-1)^{m-i+1}\sum\limits_{j=i}^{m+1}j^n s(j,i) {m+1 \brace j}. $$
- Let $b(n)$ be an integer sequence such that $$ b(n) = \sum\limits_{k=0}^{2n} T(2n-k, k)(-1)^{n-k}. $$
I conjecture that $$ b(n) = a(n+1). $$
Here is the PARI/GP program to check it numerically:
a(n) = 2*(4^n-1)*bernfrac(2*n)*(-1)^(n-1)
T(n,m) = sum(i=1, m+1, (-1)^(m-i+1)*sum(j=i, m+1, j^n*stirling(j,i,1)*stirling(m+1,j,2)))
b(n) = sum(k=0, 2*n, T(2*n-k,k)*(-1)^(n-k))
test(n) = b(n) == a(n+1)
Is there a way to prove it?