login
A308304
a(n) = (i^n)*Sum_{k=0..n} B_k*|s(n+1,k+1)|*(n+1)^k.
0
1, 0, 1, 0, 24, 0, 3396, 0, 1706112, 0, 2277172800, 0, 6690143635200, 0, 38006393154105600, 0, 380203596126189158400, 0, 6242084318591496668160000, 0, 159215887013285165806891008000
OFFSET
0,5
COMMENTS
|s(n,k)| is the unsigned Stirling number of first kind (see A008275), B_k is the Bernoulli number and i^2=-1. All even-indexed terms are positive integers, and the odd-indexed terms are zero. A generating function would be welcomed.
LINKS
R. Gy, An aerated triangular array of integers, arXiv: 1902.09309 [math.CO], 2019.
PROG
(PARI) a(n) = (I^n)*sum(k=0, n, bernfrac(k)*abs(stirling(n+1, k+1, 1))*(n+1)^k); \\ Michel Marcus, May 19 2019
CROSSREFS
Cf. A286483.
Sequence in context: A326857 A340135 A364203 * A265090 A174560 A267427
KEYWORD
nonn
AUTHOR
René Gy, May 19 2019
STATUS
approved