A051548 a(n) = LCM { tau(1), ..., tau(n) }.
1, 1, 2, 2, 6, 6, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 60, 60, 60, 60, 60, 60, 60, 60, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360, 360
Offset: 0
Keywords
Links
Crossrefs
Cf. A000005.
Programs
-
Maple
a:= proc(n) option remember; `if`(n=0, 1, ilcm(a(n-1), numtheory[tau](n))) end: seq(a(n), n=0..55); # Alois P. Heinz, Dec 11 2024
-
Mathematica
Block[{nn = 60, s}, s = DivisorSigma[0, Range@ nn]; {1}~Join~Table[LCM @@ s[[1 ;; n]], {n, nn}]] (* Michael De Vlieger, Aug 23 2017 *)
Extensions
a(0) = 1 inserted by Antti Karttunen, Aug 23 2017
Comments