A066466 Numbers having just one anti-divisor.
3, 4, 6, 96, 393216
Offset: 1
Links
- Ray Ballinger and Wilfrid Keller, List of primes k·2^n + 1 for k < 300
- Wilfrid Keller, List of primes k·2^n - 1 for k < 300
- Jon Perry, The Anti-divisor [Cached copy]
- Jon Perry, The Anti-divisor: Even More Anti-Divisors [Cached copy]
Programs
-
Mathematica
antid[n_] := Select[ Union[ Join[ Select[ Divisors[2n - 1], OddQ[ # ] && # != 1 & ], Select[ Divisors[2n + 1], OddQ[ # ] && # != 1 & ], 2n/Select[ Divisors[ 2n], OddQ[ # ] && # != 1 &]]], # < n & ]; Select[ Range[10^5], Length[ antid[ # ]] == 1 & ]
Extensions
Edited by Max Alekseyev, Oct 13 2009
Comments