login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A361781 A(n,k) is the n-th term of the k-th inverse binomial transform of the Bell numbers (A000110); square array A(n,k), n>=0, k>=0, read by antidiagonals. 3
1, 1, 1, 1, 0, 2, 1, -1, 1, 5, 1, -2, 2, 1, 15, 1, -3, 5, -3, 4, 52, 1, -4, 10, -13, 7, 11, 203, 1, -5, 17, -35, 36, -10, 41, 877, 1, -6, 26, -75, 127, -101, 31, 162, 4140, 1, -7, 37, -139, 340, -472, 293, -21, 715, 21147, 1, -8, 50, -233, 759, -1573, 1787, -848, 204, 3425, 115975 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
E.g.f. of column k: exp(exp(x) - k*x - 1).
A(n,k) = Sum_{j=0..n} (-k)^j*binomial(n,j)*Bell(n-j).
EXAMPLE
Square array A(n,k) begins:
1, 1, 1, 1, 1, 1, 1, 1, ...
1, 0, -1, -2, -3, -4, -5, -6, ...
2, 1, 2, 5, 10, 17, 26, 37, ...
5, 1, -3, -13, -35, -75, -139, -233, ...
15, 4, 7, 36, 127, 340, 759, 1492, ...
52, 11, -10, -101, -472, -1573, -4214, -9685, ...
203, 41, 31, 293, 1787, 7393, 23711, 63581, ...
877, 162, -21, -848, -6855, -35178, -134873, -421356, ...
MAPLE
A:= proc(n, k) option remember; uses combinat;
add(binomial(n, j)*(-k)^j*bell(n-j), j=0..n)
end:
seq(seq(A(n, d-n), n=0..d), d=0..10);
# second Maple program:
b:= proc(n, m) option remember;
`if`(n=0, 1, b(n-1, m+1)+m*b(n-1, m))
end:
A:= (n, k)-> b(n, -k):
seq(seq(A(n, d-n), n=0..d), d=0..10);
CROSSREFS
Columns k=0-5 give: A000110, A000296, A126617, A346738, A346739, A346740.
Rows n=0-2 give: A000012, A024000, A160457.
Main diagonal gives A290219.
Antidiagonal sums give A361380.
Cf. A108087.
Sequence in context: A275422 A169951 A174453 * A082063 A260148 A327778
KEYWORD
sign,tabl
AUTHOR
Alois P. Heinz, Mar 23 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 1 17:43 EDT 2024. Contains 372175 sequences. (Running on oeis4.)