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!)
A350259 Triangle read by rows. T(n, k) = n! * BellPolynomial(n, k). 6
1, 0, 1, 0, 4, 12, 0, 30, 132, 342, 0, 360, 2256, 7416, 18144, 0, 6240, 54480, 223920, 651360, 1545600, 0, 146160, 1749600, 8892720, 30496320, 82911600, 193030560, 0, 4420080, 71638560, 446357520, 1792405440, 5552593200, 14460979680, 33232948560 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
EXAMPLE
Triangle starts:
[0] 1
[1] 0, 1
[2] 0, 4, 12
[3] 0, 30, 132, 342
[4] 0, 360, 2256, 7416, 18144
[5] 0, 6240, 54480, 223920, 651360, 1545600
[6] 0, 146160, 1749600, 8892720, 30496320, 82911600, 193030560
MAPLE
A350259 := (n, k) -> ifelse(n = 0, 1, n! * BellB(n, k)):
seq(seq(A350259(n, k), k = 0..n), n = 0..7);
MATHEMATICA
T[n_, k_] := n! BellB[n, k]; Table[T[n, k], {n, 0, 8}, {k, 0, n}] // Flatten
CROSSREFS
Sequence in context: A218858 A014458 A099733 * A330989 A073902 A144207
KEYWORD
nonn,tabl
AUTHOR
Peter Luschny, Dec 22 2021
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 25 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)