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!)
A099996 a(n) = lcm{1, 2, ..., 2*n}. 10
1, 2, 12, 60, 840, 2520, 27720, 360360, 720720, 12252240, 232792560, 232792560, 5354228880, 26771144400, 80313433200, 2329089562800, 144403552893600, 144403552893600, 144403552893600, 5342931457063200, 5342931457063200 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
The prime number theorem implies that a(n) = e^(2n(1+o(1))) as n -> infinity. In other words, log(a(n))/n -> 2 as n -> infinity. (Sondow)
LINKS
Jonathan Sondow, Criteria for irrationality of Euler's constant, Proc. Amer. Math. Soc. 131 (2003) 3335-3344.
EXAMPLE
The LCM of {1,2,3,4,5,6} is 60 and 6 = 2*3, so a(3) = 60.
MAPLE
A099996 := proc(n)
lcm(seq(i, i=1..2*n)) ;
end proc: # R. J. Mathar, Dec 14 2011
PROG
(Haskell)
a099996 = foldl lcm 1 . enumFromTo 2 . (* 2)
-- Reinhard Zumkeller, Feb 11 2014
(PARI) a(n) = lcm(vector(2*n, k, k)); \\ Michel Marcus, Mar 18 2018
CROSSREFS
Bisection of A003418.
Cf. A051173.
Sequence in context: A190425 A145630 A082688 * A352881 A099795 A358448
KEYWORD
easy,nonn
AUTHOR
N. J. A. Sloane, Nov 20 2004
EXTENSIONS
More terms from Jonathan Sondow, Jan 17 2005
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 16:03 EDT 2024. Contains 371794 sequences. (Running on oeis4.)