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!)
A059298 Triangle of idempotent numbers binomial(n,k)*k^(n-k), version 2. 5

%I #48 Sep 08 2022 08:45:02

%S 1,2,1,3,6,1,4,24,12,1,5,80,90,20,1,6,240,540,240,30,1,7,672,2835,

%T 2240,525,42,1,8,1792,13608,17920,7000,1008,56,1,9,4608,61236,129024,

%U 78750,18144,1764,72,1,10,11520,262440,860160,787500,272160,41160

%N Triangle of idempotent numbers binomial(n,k)*k^(n-k), version 2.

%C The inverse triangle is the signed version 1,-2,1,9,-6,1,.. of triangle A061356. - _Peter Luschny_, Mar 13 2009

%C T(n,k) is the sum of the products of the cardinality of the blocks (cells) in the set partitions of {1,2,..,n} into exactly k blocks.

%C From _Peter Bala_, Jul 22 2014: (Start)

%C Exponential Riordan array [(1+x)*exp(x), x*exp(x)].

%C Let M = A093375, the exponential Riordan array [(1+x)*exp(x), x], and for k = 0,1,2,... define M(k) to be the lower unit triangular block array

%C /I_k 0\

%C \ 0 M/

%C having the k x k identity matrix I_k as the upper left block; in particular, M(0) = M. The present triangle equals the infinite matrix product M(0)*M(1)*M(2)*... - see the Example section. (End)

%C The Bell transform of n+1. For the definition of the Bell transform see A264428. - _Peter Luschny_, Jan 18 2016

%D L. Comtet, Advanced Combinatorics, Reidel, 1974, p. 91, #43 and p. 135, [3i'].

%H G. C. Greubel, <a href="/A059298/b059298.txt">Table of n, a(n) for the first 50 rows, flattened</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/IdempotentNumber.html">Idempotent Number</a>

%e Triangle begins

%e 1;

%e 2, 1;

%e 3, 6, 1;

%e 4, 24, 12, 1; ...

%e From _Peter Bala_, Jul 22 2014: (Start)

%e With the arrays M(k) as defined in the Comments section, the infinite product M(0)*M(1)*M(2)*... begins

%e /1 \/1 \/1 \ /1 \

%e |2 1 ||0 1 ||0 1 | |2 1 |

%e |3 4 1 ||0 2 1 ||0 0 1 |... = |3 6 1 |

%e |4 9 6 1 ||0 3 4 1 ||0 0 2 1 | |4 24 12 1 |

%e |5 16 18 8 1||0 4 9 6 1||0 0 3 4 1| |5 80 90 20 1|

%e |... ||... ||... | |... | (End)

%p T:= (n, k)-> binomial(n+1,k+1)*(k+1)^(n-k): seq(seq(T(n, k), k=0..n), n=0..10); # _Georg Fischer_, Oct 27 2021

%t t = Transpose[ Table[ Range[0, 11]! CoefficientList[ Series[(x Exp[x])^n/n!, {x, 0, 11}], x], {n, 11}]]; Table[ t[[n, k]], {n, 2, 11}, {k, n - 1}] // Flatten (* or simply *)

%t t[n_, k_] := Binomial[n, k]*k^(n - k); Table[t[n, k], {n, 10}, {k, n}] // Flatten

%o (Magma) /* As triangle */ [[Binomial(n,k)*k^(n-k): k in [1..n]]: n in [1.. 15]]; // _Vincenzo Librandi_, Aug 22 2015

%o (Sage) # uses[bell_matrix from A264428]

%o # Adds a column 1,0,0,0, ... at the left side of the triangle.

%o bell_matrix(lambda n: n+1, 10) # _Peter Luschny_, Jan 18 2016

%o (PARI) for(n=1, 25, for(k=1, n, print1(binomial(n,k)*k^(n-k), ", "))) \\ _G. C. Greubel_, Jan 05 2017

%Y There are 4 versions: A059297, A059298, A059299, A059300.

%Y Diagonals give A001788, A036216, A040075, A050982, A002378, 3*A002417, etc.

%Y Row sums are A000248. A093375.

%K nonn,tabl

%O 0,2

%A _N. J. A. Sloane_, Jan 25 2001

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 12:14 EDT 2024. Contains 371792 sequences. (Running on oeis4.)