This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A156991 #33 Mar 22 2022 09:52:23 %S A156991 1,0,1,0,2,6,0,6,24,60,0,24,120,360,840,0,120,720,2520,6720,15120,0, %T A156991 720,5040,20160,60480,151200,332640,0,5040,40320,181440,604800, %U A156991 1663200,3991680,8648640,0,40320,362880,1814400,6652800,19958400,51891840,121080960,259459200 %N A156991 Triangle T(n,k) read by rows: T(n,k) = n! * binomial(n + k - 1, n). %C A156991 Apart from the left column of (essentially) zeros, the same as A105725. - _R. J. Mathar_, Mar 02 2009 %D A156991 J. Riordan, An Introduction to Combinatorial Analysis, Wiley, 1958, p. 98 %H A156991 G. C. Greubel, <a href="/A156991/b156991.txt">Table of n, a(n) for the first 50 rows, flattened</a> %F A156991 T(n, k) = RisingFactorial(n, k). - _Peter Luschny_, Mar 22 2022 %e A156991 Triangle begins as: %e A156991 1; %e A156991 0, 1; %e A156991 0, 2, 6; %e A156991 0, 6, 24, 60; %e A156991 0, 24, 120, 360, 840; %e A156991 0, 120, 720, 2520, 6720, 15120; %e A156991 0, 720, 5040, 20160, 60480, 151200, 332640; %e A156991 0, 5040, 40320, 181440, 604800, 1663200, 3991680, 8648640; %e A156991 0, 40320, 362880, 1814400, 6652800, 19958400, 51891840, 121080960, 259459200; %e A156991 ... %t A156991 Table[n!*Binomial[n+k-1, n], {n, 0, 12}, {k, 0, n}]//Flatten %o A156991 (PARI) for(n=0,10, for(k=0,n, print1(n!*binomial(n+k-1,n), ", "))) \\ _G. C. Greubel_, Nov 19 2017 %o A156991 (Sage) flatten([[factorial(n)*binomial(n+k-1, n) for k in (0..n)] for n in (0..12)]) # _G. C. Greubel_, May 10 2021 %o A156991 (Sage) %o A156991 for k in range(9): %o A156991 print([rising_factorial(n, k) for n in range(k+1)]) %o A156991 # _Peter Luschny_, Mar 22 2022 %Y A156991 A092956 (row sums for n > 0). %Y A156991 Cf. A105725. %K A156991 nonn,tabl,easy %O A156991 0,5 %A A156991 _Roger L. Bagula_, Feb 20 2009