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!)
A350260 Triangle read by rows. T(n, k) = k^n * BellPolynomial(n, 1/k) for k > 0, if k = 0 then T(n, k) = k^n. 6
1, 0, 1, 0, 2, 3, 0, 5, 11, 19, 0, 15, 49, 109, 201, 0, 52, 257, 742, 1657, 3176, 0, 203, 1539, 5815, 15821, 35451, 69823, 0, 877, 10299, 51193, 170389, 447981, 1007407, 2026249, 0, 4140, 75905, 498118, 2032785, 6282416, 16157905, 36458010, 74565473 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
EXAMPLE
Triangle starts:
[0] 1
[1] 0, 1
[2] 0, 2, 3
[3] 0, 5, 11, 19
[4] 0, 15, 49, 109, 201
[5] 0, 52, 257, 742, 1657, 3176
[6] 0, 203, 1539, 5815, 15821, 35451, 69823
[7] 0, 877, 10299, 51193, 170389, 447981, 1007407, 2026249
[8] 0, 4140, 75905, 498118, 2032785, 6282416, 16157905, 36458010, 74565473
MAPLE
A350260 := (n, k) -> ifelse(k = 0, k^n, k^n * BellB(n, 1/k)):
seq(seq(A350260(n, k), k = 0..n), n = 0..8);
MATHEMATICA
T[n_, k_] := If[k == 0, k^n, k^n BellB[n, 1/k]];
Table[T[n, k], {n, 0, 8}, {k, 0, n}] // Flatten
CROSSREFS
Sequence in context: A364574 A122830 A344137 * A358276 A321296 A190902
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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)