OFFSET
1,2
LINKS
Harry J. Smith, Table of n, a(n) for n = 1..100
MATHEMATICA
t=t=Select[ Range[ 1, 200 ], !PrimeQ[ # ] & ] Union[ Table[ Apply[ LCM, Table[ Part[ t, w ], {w, 1, s} ] ], {s, 1, 100} ] ]
Join[{1}, With[{cmps=Select[Range[100], CompositeQ]}, Table[LCM@@Take[cmps, n], {n, Length[cmps]}]]]//Union (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Dec 06 2018 *)
PROG
(PARI) { n=0; b=1; for (m=1, 10^9, if (m>1, if (isprime(m) || (b=lcm(a, m)) == a, next)); write("b064354.txt", n++, " ", a=b); if (n==100, break) ) } \\ Harry J. Smith, Sep 12 2009
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Sep 25 2001
EXTENSIONS
a(22) from Harry J. Smith, Sep 12 2009
Definition clarified by Harvey P. Dale, Dec 06 2018
STATUS
approved