A273137 Absolute difference table of the divisors of the positive integers (with every table read by columns).
1, 1, 1, 2, 1, 2, 3, 1, 1, 1, 2, 2, 4, 1, 4, 5, 1, 1, 0, 2, 2, 1, 2, 3, 3, 6, 1, 6, 7, 1, 1, 1, 1, 2, 2, 2, 4, 4, 8, 1, 2, 4, 3, 6, 9, 1, 1, 2, 0, 2, 3, 2, 5, 5, 10, 1, 10, 11, 1, 1, 0, 0, 1, 1, 2, 1, 0, 1, 2, 3, 1, 1, 3, 4, 2, 4, 6, 6, 12, 1, 12, 13, 1, 1, 4, 2, 2, 5, 2, 7, 7, 14, 1, 2, 0, 8, 3, 2, 8, 5, 10, 15
Offset: 1
Examples
The tables of the first nine positive integers are 1; 1, 2; 1, 3; 1, 2, 4; 1, 5; 1, 2, 3, 6; 1, 7; 1, 2, 4, 8; 1, 3, 9; . 1; 2; 1, 2; 4; 1, 1, 3; 6; 1, 2, 4; 2, 6; . 1; 0, 2; 1, 2; 4; . 2; 1; . For n = 18 the absolute difference table of the divisors of 18 is 1, 2, 3, 6, 9, 18; 1, 1, 3, 3, 9; 0, 2, 0, 6; 2, 2, 6; 0, 4; 4; This table read by columns gives the finite subsequence [1, 1, 0, 2, 0, 4], [2, 1, 2, 2, 4], [3, 3, 0, 6], [6, 3, 6], [9, 9], [18].
Programs
-
Mathematica
Table[Transpose@ Map[Function[w, PadRight[w, Length@ #]], NestWhileList[Abs@ Differences@ # &, #, Length@ # > 1 &]] &@ Divisors@ n, {n, 15}] /. 0 -> {} // Flatten (* Michael De Vlieger, Jun 26 2016 *)
Comments