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!)
A099946 a(n) = lcm{1, 2, ..., n}/(n*(n-1)), n >= 2. 4
1, 1, 1, 3, 2, 10, 15, 35, 28, 252, 210, 2310, 1980, 1716, 3003, 45045, 40040, 680680, 612612, 554268, 503880, 10581480, 9699690, 44618574, 41186376, 114406600, 106234700, 2868336900, 2677114440, 77636318760, 145568097675, 136745788725 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,4
LINKS
Alois P. Heinz, Table of n, a(n) for n = 2..1000 (first 99 terms from Luke March)
FORMULA
a(n) = A003418(n)/(n*(n-1)) = A003418(n)/A002378(n-1), n >= 2.
MAPLE
a:= n-> ilcm(seq(k, k=1..n))/n/(n-1): seq(a(n), n=2..37); # Emeric Deutsch, Jun 13 2005
MATHEMATICA
Table[LCM@@Range[n]/(n(n-1)), {n, 2, 40}] (* Harvey P. Dale, Jan 14 2011 *)
PROG
(Python)
from math import gcd
def lcm(a, b):
return (a * b) // gcd(a, b)
def f(lim):
l = 1
for n in range(2, lim + 1):
l = lcm(n, l)
print(n, l // (n * (n - 1)))
f(100) # Luke March, Jul 23 2014
(PARI) a(n) = lcm(vector(n, i, i))/(n*(n-1)); \\ Michel Marcus, Jul 25 2014
CROSSREFS
Sequence in context: A327809 A075856 A025520 * A011953 A038519 A192617
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Nov 12 2004
EXTENSIONS
More terms from Emeric Deutsch, Jun 13 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 27 14:12 EDT 2024. Contains 372019 sequences. (Running on oeis4.)