cp's OEIS Frontend

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.

A153188 Triangle read by rows: T(n,k) = n^k * k!.

This page as a plain text file.
%I A153188 #24 Oct 24 2024 15:53:00
%S A153188 1,1,1,1,2,8,1,3,18,162,1,4,32,384,6144,1,5,50,750,15000,375000,1,6,
%T A153188 72,1296,31104,933120,33592320,1,7,98,2058,57624,2016840,84707280,
%U A153188 4150656720,1,8,128,3072,98304,3932160,188743680,10569646080,676457349120
%N A153188 Triangle read by rows: T(n,k) = n^k * k!.
%F A153188 T(n,k) = Product_{j=1..n} n*j.
%e A153188 Triangle T(n,k) begins:
%e A153188   1;
%e A153188   1, 1;
%e A153188   1, 2,  8;
%e A153188   1, 3, 18,  162;
%e A153188   1, 4, 32,  384,  6144;
%e A153188   1, 5, 50,  750, 15000,  375000;
%e A153188   1, 6, 72, 1296, 31104,  933120, 33592320;
%e A153188   1, 7, 98, 2058, 57624, 2016840, 84707280, 4150656720;
%e A153188   ...
%t A153188 t[n_, m_] =Product[m*k, {k, 1, n}];
%t A153188 Table[Table[t[n, m], {n, 1, m}], {m, 1, 10}];
%t A153188 Flatten[%]
%Y A153188 Main diagonal gives A061711.
%Y A153188 Row sums give A368561.
%Y A153188 Cf. A000165, A008544.
%K A153188 nonn,tabl
%O A153188 0,5
%A A153188 _Roger L. Bagula_, Dec 20 2008
%E A153188 Formula corrected by _Georg Fischer_, Oct 24 2024