OFFSET
1,2
COMMENTS
I.e., "next n composite numbers" following those that were used in computing a(n-1); see Example section. - Jon E. Schoenfield, Mar 18 2018
LINKS
Robert Israel, Table of n, a(n) for n = 1..356
FORMULA
EXAMPLE
a(2) = lcm(4,6) = 12;
a(3) = lcm(8,9,10) = 360;
a(4) = lcm(12,14,15,16) = 1680.
MAPLE
comps:= remove(isprime, [$2..10^4]):
N:= floor((sqrt(9+8*nops(comps))-1)/2):
1, seq(ilcm(op(comps[(n-1)*n/2 .. n*(n+1)/2-1])), n=2..N); # Robert Israel, Jan 13 2016
MATHEMATICA
Join[{1}, i = 3; Table[t = {}; c = 0; While[c != n, If[! PrimeQ[i], AppendTo[t, i]; c++]; i++]; LCM @@ t, {n, 2, 16}]] (* Jayanta Basu, Jul 30 2013 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Aug 20 2002
EXTENSIONS
More terms from Sascha Kurz, Jan 14 2003
Offset corrected by Robert Israel, Jan 13 2016
STATUS
approved