login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A062080
Group the even numbers as 2, (4,6), (8,10,12), (14,16,18,20), (22,24,26,28,30), ... then a(n) = LCM of the n-th group.
1
2, 12, 120, 5040, 120120, 3255840, 248648400, 3389158080, 893252440080, 147413193127200, 354447322669440, 343973251893070800, 6580115259104106720, 1102084393565113358400, 142057610393676828570720
OFFSET
1,1
LINKS
EXAMPLE
a(3) = lcm(8,10,12) = 120.
PROG
(PARI) for(n=1, 20, l=1:forstep(s=n^2-n+2, n^2+n, 2, l=lcm(l, s)):print1(l", "))
(PARI) { for (n=1, 100, a=b=n^2 - n + 2; for (k=1, n - 1, a=lcm(a, b + 2*k)); write("b062080.txt", n, " ", a) ) } \\ Harry J. Smith, Jul 31 2009
CROSSREFS
Sequence in context: A229901 A007132 A138534 * A221279 A165300 A028359
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Jun 15 2001
EXTENSIONS
More terms from Ralf Stephan, Mar 19 2003
STATUS
approved