OFFSET
1,3
COMMENTS
EXAMPLE
Triangle begins:
1;
1, 3;
1, 5;
1, 3, 7;
1, 9;
1, 3, 4, 13;
1, 13;
1, 3, 7, 15;
1, 5, 19;
1, 3, 10, 17;
1, 21;
1, 3, 4, 5, 11, 28;
1, 25;
1, 3, 16, 25;
1, 5, 7, 41;
1, 3, 7, 15, 31;
1, 33;
1, 3, 4, 13, 14, 47;
1, 37;
1, 3, 7, 7, 25, 39;
1, 5, 13, 53;
1, 3, 28, 41;
1, 45;
1, 3, 4, 5, 11, 12, 22, 61;
1, 9, 61;
1, 3, 34, 49;
1, 5, 19, 65;
...
For n = 18 the divisors of 18 are 1, 2, 3, 6, 9, 18, and the absolute difference triangle of the divisors is
1, 2, 3, 6, 9, 18;
1, 1, 3, 3, 9;
0, 2, 0, 6;
2, 2, 6;
0, 4;
4;
The antidiagonal sums give [1, 3, 4, 13, 14, 47] which is also the 18th row of the irregular triangle.
MATHEMATICA
Table[Map[Total, Table[#[[m - k + 1, k]], {m, Length@ #}, {k, m}], {1}] &@ NestWhileList[Abs@ Differences@ # &, Divisors@ n, Length@ # > 1 &], {n, 27}] // Flatten (* Michael De Vlieger, Jun 27 2016 *)
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Omar E. Pol, Jun 27 2016
STATUS
approved