OFFSET
0,5
COMMENTS
If B2(n) = Sum_{k=0..n} V(n, k) * (-1)^(n-k) * B(k) where V(n, k) is A393519 then B(n) = Sum_{k=0..n} T(n, k) * B2(k) where T(n, k) is this sequence (pair of sequence transforms).
LINKS
Marko Riedel, Maple code for sequence.
Marko Riedel, Definitions and auxiliary material.
FORMULA
E.g.f. T(n, k) = n! [w^n] G(w)^k/k! where G(w) is given at A394560, i.e G(w) = Sum_{m>= 0} A394560(m)*w^m/m!.
The subdiagonal is A045943 (consider the linear term and the quadratic term of G(w)).
T(n, k) = (1/k) * Sum_{j=1..n-k+1} binomial(n, j) * A394560(j) * T(n - j, k - 1) for k > 0, T(n, 0) = 0^n. - Peter Luschny, Mar 27 2026
EXAMPLE
n\k| 0 1 2 3 4 5
---+--------------------------
0 | 1;
1 | 0, 1;
2 | 0, 3, 1;
3 | 0, 21, 9, 1;
4 | 0, 261, 111, 18, 1;
5 | 0, 4743, 1935, 345, 30, 1;
PROG
(SageMath)
def A394559Triangle(N: int) -> list[list[int]]:
return BellTransform(seq) # defined in A394439.
for row in A394559Triangle(9): print(row) # Peter Luschny, Mar 27 2026
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Marko Riedel, Mar 24 2026
STATUS
approved
