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!)
A268442 Triangle read by rows, the coefficients of the inverse Bell polynomials. 4
1, 0, 1, 0, -1, 1, 0, 3, -1, -3, 1, 0, -15, 10, -1, 15, -4, -6, 1, 0, 105, -105, 10, 15, -1, -105, 60, -5, 45, -10, -10, 1, 0, -945, 1260, -280, -210, 35, 21, -1, 945, -840, 70, 105, -6, -420, 210, -15, 105, -20, -15, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,8
COMMENTS
The triangle of coefficients of the Bell polynomials is A268441. For the definition of the inverse Bell polynomials see the link 'Bell transform'.
LINKS
Peter Luschny, The Bell transform
EXAMPLE
[[1]],
[[0], [1]],
[[0], [-1], [1]],
[[0], [3, -1], [-3], [1]],
[[0], [-15, 10, -1], [15, -4], [-6], [1]],
[[0], [105, -105, 10, 15, -1], [-105, 60, -5], [45, -10], [-10], [1]]
Replacing the sublists by their sums reduces the triangle to the triangle of the Stirling numbers of first kind (A048994). The column 1 of sublists is A176740 (missing the leading 1) and A134685 in different order.
MATHEMATICA
A268442Matrix[dim_] := Module[ {v, r, A},
v = Table[Subscript[x, j], {j, 1, dim}];
r = Table[Subscript[x, j]->1, {j, 1, n}];
A = Table[Table[BellY[n, k, v], {k, 0, dim}], {n, 0, dim}];
Table[Table[MonomialList[Inverse[A][[n, k]]/. r[[1]],
v, Lexicographic] /. r, {k, 1, n}] // Flatten, {n, 1, dim}]];
A268442Matrix[7] // Flatten
PROG
(Sage) # see link
CROSSREFS
Sequence in context: A263526 A132301 A073272 * A175623 A121273 A063065
KEYWORD
sign,tabf
AUTHOR
Peter Luschny, Feb 06 2016
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 April 19 15:03 EDT 2024. Contains 371794 sequences. (Running on oeis4.)