A225642 Irregular table read by rows: n-th row gives distinct values of successively iterated Landau-like functions for n, starting with the initial value n.
1, 2, 3, 6, 4, 12, 5, 30, 60, 6, 30, 60, 7, 84, 420, 8, 120, 840, 9, 180, 1260, 2520, 10, 210, 840, 2520, 11, 330, 4620, 13860, 27720, 12, 420, 4620, 13860, 27720, 13, 780, 8580, 60060, 180180, 360360, 14, 630, 8190, 90090, 360360, 15, 840, 10920, 120120, 360360
Offset: 1
Examples
The first fifteen rows of table are: 1; 2; 3, 6; 4, 12; 5, 30, 60; 6, 30, 60; 7, 84, 420; 8, 120, 840; 9, 180, 1260, 2520; 10, 210, 840, 2520; 11, 330, 4620, 13860, 27720; 12, 420, 4620, 13860, 27720; 13, 780, 8580, 60060, 180180, 360360; 14, 630, 8190, 90090, 360360; 15, 840, 10920, 120120, 360360;
Links
- Alois P. Heinz, Rows n = 1..150, flattened
Crossrefs
Programs
-
Mathematica
b[n_, i_] := b[n, i] = If[n == 0, {1}, If[i < 1, {}, Table[Map[Function[{x}, LCM[x, If[j == 0, 1, i]]], b[n - i * j, i - 1]], {j, 0, n/i}]]]; T[n_] := T[n] = Module[{d, h, t, lis}, t = b[n, n]; lis = {}; d = n; h = 0; While[d != h, AppendTo[lis, d]; h = d; d = Max[Table[LCM[h, i], {i, t}]]]; lis]; Table[T[n], {n, 1, 20}] // Flatten (* Jean-François Alcover, Mar 02 2016, after Alois P. Heinz *)
Comments