OFFSET
0,2
COMMENTS
phi(n) = A000010(n). The range of the phi function is A002202; the latter excludes odd numbers > 1 and some even numbers as well, and explains why some terms in this sequence are repeated. The (multi-valued) inverse of the phi function is A032447. Note that in computing the least common multiple for the present sequence, only prime power values of k are required, which makes the search shorter.
All terms of this sequence are the least having that prime signature (A025487).
It appears that log(a(n))/n approaches 1 as n increases without bound.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..1000
FORMULA
a(n) = Product_{k=1..n} A381887(k).
EXAMPLE
a(4) = the least common multiple of all natural numbers k such that phi(k) <= 4. The full list of such k is {1, 2, 3, 4, 5, 6, 8, 10, 12}, and the least common multiple of that set is 120.
MATHEMATICA
seq[len_] := With[{phi = EulerPhi[Range[If[len <= 2, 3*len, len^2]]]}, Table[LCM @@ Flatten[Position[phi, _?(# <= n &)]], {n, 1, len}]]; seq[30] (* Amiram Eldar, Jan 16 2026 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Hal M. Switkay, Jan 15 2026
STATUS
approved
