login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A025543
Least common multiple of the first n composite numbers.
3
1, 4, 12, 24, 72, 360, 360, 2520, 2520, 5040, 5040, 5040, 5040, 55440, 55440, 277200, 3603600, 10810800, 10810800, 10810800, 21621600, 21621600, 367567200, 367567200, 367567200, 6983776800, 6983776800, 6983776800, 6983776800, 6983776800
OFFSET
0,2
MATHEMATICA
Table[Apply[LCM, Take[Select[Range[2, 300], !PrimeQ[#] &], n]], {n, 1, 100}] (* Clark Kimberling, Nov 12 2016 *)
PROG
(Haskell)
a025543 n = a025543_list !! n
a025543_list = scanl lcm 1 a002808_list
-- Reinhard Zumkeller, Nov 10 2013
CROSSREFS
Differs from A003418 and A051451
Cf. A036691.
Sequence in context: A318610 A296358 A282512 * A064354 A199903 A218034
KEYWORD
nonn
STATUS
approved