OFFSET
1,2
COMMENTS
After 1, a subsequence of A216782. If both x and y are terms and gcd(x, y) = 1, then x*y is also present. - Antti Karttunen, Mar 20 2023
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..910 from Harvey P. Dale)
MATHEMATICA
Select[Range[2000], IntegerQ[Log[2, Numerator[Total[1/Divisors[#]]]]]&] (* Harvey P. Dale, Nov 29 2014 *)
PROG
(PARI) isok(n) = (ispower(num = numerator(sigma(n)/n), , &s) && (s == 2)) || (num == 2) || (num == 1); \\ Michel Marcus, Nov 21 2013
(PARI) isA043305(n) = { n=sigma(n)/gcd(sigma(n), n); !bitand(n, n-1); }; \\ Antti Karttunen, Mar 20 2023
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Apr 04 2002
STATUS
approved