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!)
A242028 Numbers k such that the least common multiple of the anti-divisors of k is less than k. 1
3, 4, 6, 9, 36, 54, 96, 216, 576, 1296, 69984, 236196, 393216, 497664, 28697814, 31850496 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Numbers k such that lcm(anti-divisors(k)) < lcm(divisors(k)).
The numbers in the sequence up to a(n) = 1296 are of the form 2^x * 3^y. Checking all values of x and y between 1 and 9, there is one additional term, 69984.
Numbers in sequence up to a(n) = 31850496 are of the form 2^x * 3^y, x >= 0, y >= 0. Searching through x <= 40 and y <= 40, the following terms in the sequence are found: 84934656, 2038431744, 5435817984, 1174136684544, 28179280429056, 42268920643584, 75144747810816, 289207845356544, 570630428688384, 30814043149172736. - Chai Wah Wu, Aug 20 2014
LINKS
EXAMPLE
a(6) = 9 because lcm(2, 6) = 6, which is less than 9.
MATHEMATICA
antiDivisors[n_Integer] :=
Cases[Range[2, n - 1], _?(Abs[Mod[n, #] - #/2] < 1 &)];
a242028[n_Integer] := Select[Range[n],
Length[antiDivisors[#]] > 0 && LCM @@ antiDivisors[#] < # &]; a242028[5000] (* Michael De Vlieger, Aug 21 2014 *)
PROG
(Python)
from sympy import divisors, lcm
A242028 = [n for n in range(3, 10**5) if lcm(
..........[2*d for d in divisors(n) if n > 2*d and n % (2*d)] +
..........[d for d in divisors(2*n-1) if n > d >=2 and n % d] +
..........[d for d in divisors(2*n+1) if n > d >=2 and n % d]) < n]
# Chai Wah Wu, Aug 19 2014
CROSSREFS
Cf. A096357.
Sequence in context: A191699 A293272 A192286 * A254002 A095729 A185739
KEYWORD
nonn,more
AUTHOR
Michael De Vlieger, suggested by Michel Marcus, Aug 11 2014
EXTENSIONS
Corrected comment, removed 1 and 2 from sequence and added a(11)-a(16) by Chai Wah Wu, Aug 20 2014
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 July 12 06:35 EDT 2024. Contains 374237 sequences. (Running on oeis4.)