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!)
A059374 Triangle read by rows, T(n, k) = Sum_{i=0..n} L'(n, n-i) * binomial(i, k), for k = 0..n-1. 1

%I #18 Mar 28 2023 07:42:55

%S 1,3,2,13,18,6,73,156,108,24,501,1460,1560,720,120,4051,15030,21900,

%T 15600,5400,720,37633,170142,315630,306600,163800,45360,5040,394353,

%U 2107448,4763976,5891760,4292400,1834560,423360,40320

%N Triangle read by rows, T(n, k) = Sum_{i=0..n} L'(n, n-i) * binomial(i, k), for k = 0..n-1.

%C L'(n, i) are unsigned Lah numbers (Cf. A008297).

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

%F E.g.f.: exp(x/(1-(1+y)*x))/(1-(1+y)*x)^2. - _Vladeta Jovovic_, May 10 2003

%e Triangle begins:

%e [1],

%e [3, 2],

%e [13, 18, 6],

%e [73, 156, 108, 24],

%e [501, 1460, 1560, 720, 120],

%e ...

%t t[n_, k_] := Sum[ Binomial[n-1, n-i-1]*n!/(n-i)!*Binomial[i, k], {i, 0, n}]; Table[t[n, k], {n, 1, 8}, {k, 0, n-1}] // Flatten (* _Jean-François Alcover_, Mar 22 2013 *)

%o (PARI) for(n=1,10, for(k=0,n-1, print1(sum(j=0,n, binomial(j,k)* binomial(n-1,n-j-1)*n!/(n-j)!), ", "))) \\ _G. C. Greubel_, Jan 29 2018

%Y Cf. T(n, 0) = A000262, A025168 (row sums), A000012 (alternating row sums), A059110.

%Y Cf. A008297, A271703.

%K easy,nonn,tabl

%O 1,2

%A _Vladeta Jovovic_, Jan 28 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 27 11:10 EDT 2024. Contains 372019 sequences. (Running on oeis4.)