login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A074094 a(1) = 1; for n > 1, a(n) = LCM of next n composite numbers. 1
1, 12, 360, 1680, 27720, 1965600, 116396280, 758696400, 18465927480, 3962129371200, 5637782470320, 546077803471200, 592841333318073840, 717574218173821008000, 66020319718147594800, 111304867624125438463200 (list; graph; refs; listen; history; text; internal format)
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
FORMULA
for n >= 2, a(n) = lcm(A002808(A000217(n-1)...A000217(n)-1)). - Robert Israel, Jan 13 2016
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
Sequence in context: A134800 A053068 A046969 * A012553 A128043 A012431
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 08:39 EDT 2024. Contains 371782 sequences. (Running on oeis4.)