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!)
A128040 a(n) = product of the primes which are <= the n-th squarefree positive integer. a(n) also is the LCM of the first n squarefree positive integers. 1
1, 2, 6, 30, 30, 210, 210, 2310, 30030, 30030, 30030, 510510, 9699690, 9699690, 9699690, 223092870, 223092870, 6469693230, 6469693230, 200560490130, 200560490130, 200560490130, 200560490130, 7420738134810, 7420738134810 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MAPLE
A005117 := proc(n) option remember; local a; if n =1 then 1; else a := A005117(n-1)+1 ; while not numtheory[issqrfree](a) do a := a+1 ; od: RETURN(a) ; fi ; end: A128040 := proc(n) lcm( seq(A005117(i), i=1..n) ) ; end: seq(A128040(n), n=1..30) ; # R. J. Mathar, Nov 01 2007
CROSSREFS
Sequence in context: A095198 A126989 A361492 * A219196 A233358 A241557
KEYWORD
nonn
AUTHOR
Leroy Quet, May 07 2007
EXTENSIONS
More terms from R. J. Mathar, Nov 01 2007
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)