A119741 A008279, with the first and last of each row removed.
2, 3, 6, 4, 12, 24, 5, 20, 60, 120, 6, 30, 120, 360, 720, 7, 42, 210, 840, 2520, 5040, 8, 56, 336, 1680, 6720, 20160, 40320, 9, 72, 504, 3024, 15120, 60480, 181440, 362880, 10, 90, 720, 5040, 30240, 151200, 604800, 1814400, 3628800, 11, 110, 990, 7920, 55440, 332640, 1663200, 6652800, 19958400, 39916800
Offset: 2
Examples
Triangle begins: 2; 3, 6; 4, 12, 24; 5, 20, 60, 120; 6, 30, 120, 360, 720; 7, 42, 210, 840, 2520, 5040; 8, 56, 336, 1680, 6720, 20160, 40320; 9, 72, 504, 3024, 15120, 60480, 181440, 362880; 10, 90, 720, 5040, 30240, 151200, 604800, 1814400, 3628800; ...
Links
- Andrew Howroyd, Table of n, a(n) for n = 2..1276 (first 50 rows)
- G. A. Kamel, Partial Chain Topologies on Finite Sets, Computational and Applied Mathematics Journal. Vol. 1, No. 4, 2015, pp. 174-179.
Crossrefs
Programs
-
Maple
T:= (n, k)-> n!/(n-k)!: seq(seq(T(n,k), k=1..n-1), n=2..11); # Alois P. Heinz, Aug 22 2025
-
Mathematica
Table[FactorialPower[n, k], {n, 2, 11}, {k, 1, n-1}] // Flatten (* Jean-François Alcover, Feb 21 2020 *)
Formula
Extensions
Edited by Don Reble, Aug 01 2006
Comments