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!)
A079638 Matrix product of unsigned Lah-triangle |A008297(n,k)| and unsigned Stirling1-triangle |A008275(n,k)|. 1
1, 3, 1, 14, 9, 1, 90, 83, 18, 1, 744, 870, 275, 30, 1, 7560, 10474, 4275, 685, 45, 1, 91440, 143892, 70924, 14805, 1435, 63, 1, 1285200, 2233356, 1274196, 324289, 41160, 2674, 84, 1, 20603520, 38769840, 24870572, 7398972, 1151409, 98280, 4578 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Matrix product of unsigned Lah-triangle |A008297(n,k)| and Stirling1-triangle A008275(n,k) is unsigned Stirling1-triangle |A008275(n,k)|.
Also the Bell transform of A029767(n+1). For the definition of the Bell transform see A264428. - Peter Luschny, Jan 26 2016
Essentially the same as A131222. - Peter Bala, Feb 12 2022
LINKS
FORMULA
T(n, k) = Sum_{i=k..n} |A008297(n, i)| * |A008275(i, k)|.
E.g.f.: ((1-x)/(1-2*x))^y. - Vladeta Jovovic, Nov 22 2003
EXAMPLE
Triangle begins
1;
3, 1;
14, 9, 1;
90, 83, 18, 1;
744, 870, 275, 30, 1;
7560, 10474, 4275, 685, 45, 1;
...
MAPLE
# The function BellMatrix is defined in A264428.
# Adds (1, 0, 0, 0, ..) as column 0.
BellMatrix(n -> n!*(2^(n+1)-1), 9); # Peter Luschny, Jan 26 2016
MATHEMATICA
BellMatrix[f_, len_] := With[{t = Array[f, len, 0]}, Table[BellY[n, k, t], {n, 0, len - 1}, {k, 0, len - 1}]];
B = BellMatrix[Function[n, n! (2^(n + 1) - 1)], rows = 12];
Table[B[[n, k]], {n, 2, rows}, {k, 2, n}] // Flatten (* Jean-François Alcover, Jun 28 2018, after Peter Luschny *)
CROSSREFS
Cf. A002866 (row sums), A029767 (first column), A131222.
Sequence in context: A283349 A204121 A079640 * A018858 A101820 A055301
KEYWORD
nonn,tabl
AUTHOR
Vladeta Jovovic, Jan 30 2003
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 08:59 EDT 2024. Contains 371935 sequences. (Running on oeis4.)