A328025 Irregular triangle read by rows where row n gives the differences between consecutive divisors of n in weakly decreasing order.
1, 2, 2, 1, 4, 3, 1, 1, 6, 4, 2, 1, 6, 2, 5, 3, 1, 10, 6, 2, 1, 1, 1, 12, 7, 5, 1, 10, 2, 2, 8, 4, 2, 1, 16, 9, 3, 3, 1, 1, 18, 10, 5, 2, 1, 1, 14, 4, 2, 11, 9, 1, 22, 12, 4, 2, 2, 1, 1, 1, 20, 4, 13, 11, 1, 18, 6, 2, 14, 7, 3, 2, 1, 28, 15, 5, 4, 2, 1, 1, 1
Offset: 1
Examples
Triangle begins: {} 1 2 2 1 4 3 1 1 6 4 2 1 6 2 5 3 1 10 6 2 1 1 1 12 7 5 1 10 2 2 8 4 2 1 16 9 3 3 1 1 18 10 5 2 1 1 For example, the divisors of 18 are {1,2,3,6,9,18}, with differences {1,1,3,3,9}, so row 18 is {9,3,3,1,1}.
Crossrefs
Programs
-
Mathematica
Table[Sort[Differences[Divisors[n]],Greater],{n,30}]