OFFSET
1,2
COMMENTS
Conjecture: There are finitely many numbers of the form {LCM of next n numbers}/n! which are not integers.
In the first three thousand terms, I found only five which are integers: 1, 2, 3, 4, 6. - Robert G. Wilson v
EXAMPLE
a(6) = floor(LCM(16,17,18,19,20,21)/6!) = floor(500.5) = 500.
MATHEMATICA
f[n_] := Floor[LCM @@ Drop[Range[n(n + 1)/2], n(n - 1)/2]/n! ]; Table[ f[n], {n, 21}] (* Robert G. Wilson v, Apr 30 2004 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Apr 03 2004
EXTENSIONS
Edited by Robert G. Wilson v, Apr 30 2004
STATUS
approved