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!)
A109922 a(n) = floor(lcm(1,2,...n)/(1+2+...+n)). 1
1, 0, 1, 1, 4, 2, 15, 23, 56, 45, 420, 355, 3960, 3432, 3003, 5299, 80080, 71650, 1225224, 1108536, 1007760, 920128, 19399380, 17847429, 82372752, 76271066, 212469400, 197816337, 5354228880, 5008794758, 145568097675, 273491577450 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,5
LINKS
EXAMPLE
a(6)=2 because floor(lcm(1,2,3,4,5,6)/(1+2+3+4+5+6)) = floor(60/21) = 2.
MAPLE
a:=n->floor(2*lcm(seq(k, k=1..n))/n/(n+1)): seq(a(n), n=1..37); # Emeric Deutsch
MATHEMATICA
f[n_] := Floor[ 2LCM @@ Range[n]/(n(n + 1))]; Table[ f[n], {n, 32}] (* Robert G. Wilson v, Jul 18 2005 *)
CROSSREFS
Sequence in context: A121662 A130042 A285362 * A090640 A302213 A090881
KEYWORD
easy,nonn
AUTHOR
Amarnath Murthy, Jul 16 2005
EXTENSIONS
More terms from Emeric Deutsch and Robert G. Wilson v, Jul 16 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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)