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!)
A051538 Least common multiple of {b(1),...,b(n)}, where b(k) = k(k+1)(2k+1)/6 = A000330(k). 5
1, 5, 70, 210, 2310, 30030, 60060, 1021020, 19399380, 19399380, 446185740, 2230928700, 6692786100, 194090796900, 12033629407800, 12033629407800, 12033629407800, 445244288088600, 445244288088600, 18255015811632600 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Also a(n) = lcm(1,...,(2n+2))/12. - Paul Barry, Jun 09 2006. Proof that this is the same sequence, from Martin Fuller, May 06 2007: k, k+1, 2k+1 are coprime so their lcm is the same as their product. Hence a(n) = lcm{k, k+1, 2k+1 | k=1..n}/6. {k, k+1, 2k+1 | k=1..n} = {1..2n+2 excluding even numbers >n+1}. Adding the higher even numbers to the set doubles the LCM. Hence lcm{k, k+1, 2k+1 | k=1..n}/6 = lcm{1..2n+2}/12.
LINKS
EXAMPLE
a(4) = lcm(1, 5, 14, 30) = 210.
MATHEMATICA
Table[LCM@@Range[2n+2]/12, {n, 30}] (* Harvey P. Dale, Apr 25 2011 *)
PROG
(Haskell)
a051538 n = a051538_list !! (n-1)
a051538_list = scanl1 lcm $ tail a000330_list
-- Reinhard Zumkeller, Mar 12 2014
(Magma) [Lcm([1..2*n+2])/12: n in [1..30]]; // G. C. Greubel, May 03 2023
(SageMath)
def A051538(n):
return lcm(range(1, 2*n+3))/12
[A051538(n) for n in range(1, 31)] # G. C. Greubel, May 03 2023
CROSSREFS
Second column of A120101.
Cf. A000330.
Cf. A051542 (LCM), A025555.
Sequence in context: A231355 A145632 A299318 * A218709 A286840 A034944
KEYWORD
easy,nice,nonn
AUTHOR
EXTENSIONS
Corrected by James A. Sellers
Edited by N. J. A. Sloane, May 06 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 25 05:18 EDT 2024. Contains 371964 sequences. (Running on oeis4.)