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!)
A066469 Numbers having exactly four anti-divisors. 1
13, 18, 40, 41, 61, 84, 100, 169, 289, 421, 784, 1024, 1104, 1296, 3121, 5776, 9216, 12544, 12769, 13924, 16129, 17956, 24649, 32761, 33024, 35344, 36721, 36864, 38809, 71821, 75076, 106261, 110224, 119716, 135721, 147456, 167281, 175561, 199081, 232324, 237169 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
See A066272 for definition of anti-divisor.
LINKS
Jon Perry, The Anti-Divisor
Jon Perry, The Anti-divisor [Cached copy]
MATHEMATICA
antid[n_] := Select[ Union[ Join[ Select[ Divisors[2n - 1], OddQ[ # ] && # != 1 & ], Select[ Divisors[2n + 1], OddQ[ # ] && # != 1 & ], 2n/Select[ Divisors[ 2*n], OddQ[ # ] && # != 1 &]]] }, # < n & ]]; Select[ Range[10^5], Length[ antid[ # ]] == 4 & ]
PROG
(Python)
from sympy.ntheory.factor_ import antidivisor_count
A066469_list = [n for n in range(1, 10**3) if antidivisor_count(n) == 4] # Chai Wah Wu, Aug 02 2015
CROSSREFS
Cf. A066272.
Sequence in context: A317771 A037158 A318080 * A318348 A197704 A218626
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Jan 02 2002
EXTENSIONS
More terms from Chai Wah Wu, Aug 02 2015
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 15 16:08 EDT 2024. Contains 374333 sequences. (Running on oeis4.)