Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #5 Sep 10 2021 19:22:57
%S 1,1,2,1,3,5,1,4,10,16,1,5,17,41,65,1,6,26,86,206,326,1,7,37,157,517,
%T 1237,1957,1,8,50,260,1100,3620,8660,13700,1,9,65,401,2081,8801,28961,
%U 69281,109601,1,10,82,586,3610,18730,79210,260650,623530,986410
%N Triangle read by rows: T(n,k) = Sum_{j=0..k} binomial(n,j) * j! (0 <= k <= n).
%e Triangle begins:
%e 1;
%e 1, 2;
%e 1, 3, 5;
%e 1, 4, 10, 16;
%e 1, 5, 17, 41, 65;
%e 1, 6, 26, 86, 206, 326;
%e 1, 7, 37, 157, 517, 1237, 1957;
%e 1, 8, 50, 260, 1100, 3620, 8660, 13700;
%e ...
%t T[n_, k_] := Sum[Binomial[n, j] j!, {j, 0, k}]; Table[T[n, k], {n, 0, 9}, {k, 0, n}] // Flatten
%Y T(n,n) = A000522, T(2*n,n) = A066211.
%Y Cf. A008279, A008949, A111063, A121662, A285268.
%K nonn,tabl
%O 0,3
%A _Ilya Gutkovskiy_, Sep 10 2021