A165680 Triangle of the divisors of the coefficients of triangles A138771 and A165675.
1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 6, 1, 1, 1, 2, 6, 24, 1, 1, 1, 2, 6, 24, 120, 1, 1, 1, 2, 6, 24, 120, 720, 1, 1, 1, 2, 6, 24, 120, 720, 5040, 1, 1, 1, 2, 6, 24, 120, 720, 5040, 40320, 1, 1, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880
Offset: 1
Examples
Triangle starts: 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 6, 1, 1, 1, 2, 6, 24, 1, 1, 1, 2, 6, 24, 120, 1, 1, 1, 2, 6, 24, 120, 720, 1, 1, 1, 2, 6, 24, 120, 720, 5040, 1, 1, 1, 2, 6, 24, 120, 720, 5040, 40320, 1, 1, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880, ...
Crossrefs
Programs
-
Maple
nmax:=11: for n from 1 to nmax do a(n,1):=1 od: for n from 2 to nmax do for m from 2 to n do a(n,m):=(m-2)! od: od: for n from 1 to nmax do seq(a(n,m),m=1..n) od;