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!)
A086536 Least common multiple of numbers obtained by adding one to the odd divisors of n and subtracting 1 from the even divisors of n. 0
2, 2, 4, 6, 6, 20, 8, 42, 20, 18, 12, 660, 14, 104, 48, 210, 18, 340, 20, 342, 88, 84, 24, 106260, 78, 350, 140, 2808, 30, 20880, 32, 6510, 204, 198, 72, 78540, 38, 740, 280, 31122, 42, 234520, 44, 3612, 5520, 360, 48, 4994220, 200, 11466, 468, 17850, 54 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = least common multiple of (Ea-1), (Eb-1), (Ec-1), ..., (Oa+1), (Ob+1), (Oc+1)..., where Ea, Eb, Ec, ... and Oa, Ob, Oc, ... are respectively the even and odd divisors of n.
EXAMPLE
a(14) = 104. The divisors of 14 are 1,2,7 and 14 and the corresponding numbers obtained are 2,1,8 and 13 whose least common multiple is 104.
PROG
(PARI) a(n) = local(d); d = divisors(n); l = 1; for (i = 1, length(d), if (d[i]%2, d[i]++, d[i]--); l = lcm(l, d[i])); l; \\ David Wasserman, Mar 15 2005
CROSSREFS
Cf. A086535.
Sequence in context: A102425 A162608 A143216 * A053045 A152424 A145804
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Aug 18 2003
EXTENSIONS
More terms from David Wasserman, Mar 15 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 March 28 18:04 EDT 2024. Contains 371254 sequences. (Running on oeis4.)