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!)
A124443 a(1)=1, a(n) = LCM of the integers, from 1 to n/2, which are coprime to n. 2
1, 1, 1, 1, 2, 1, 6, 3, 4, 3, 60, 5, 60, 15, 28, 105, 840, 35, 2520, 63, 40, 315, 27720, 385, 5544, 3465, 40040, 6435, 360360, 1001, 360360, 45045, 7280, 45045, 350064, 85085, 12252240, 765765, 1989680, 2909907, 232792560, 230945, 232792560, 1322685 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,5
LINKS
EXAMPLE
The integers which are >= 1 and are <= 9/2 and which are coprime to 9 are 1, 2 and 4. So a(9) = lcm(1,2,4) = 4.
MATHEMATICA
f[n_] := If[n == 1, 1, LCM @@ Select[Range[Floor[n/2]], GCD[ #, n] == 1 &]]; Table[f[n], {n, 45}] (* Ray Chandler, Nov 12 2006 *)
PROG
(PARI) a(n) = lcm(select(x->(gcd(x, n)==1), vector(n\2, k, k))); \\ Michel Marcus, Mar 18 2018
CROSSREFS
Cf. A124444.
Sequence in context: A289869 A334595 A350684 * A077172 A160047 A249990
KEYWORD
nonn
AUTHOR
Leroy Quet, Nov 01 2006
EXTENSIONS
Extended by Ray Chandler, Nov 12 2006
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 May 4 18:21 EDT 2024. Contains 372257 sequences. (Running on oeis4.)