OFFSET
1,1
COMMENTS
As powers of 3 are in the sequence (larger than 1), the sequence is infinite. - David A. Corneth, Jul 20 2020
FORMULA
sigma(3^m) is in the sequence, as is sigma(3^m*(3^(m + 1) - 2)) for prime 3^(m + 1) - 2. - David A. Corneth, Jul 20 2020
EXAMPLE
Anti-divisors of 60 are 7, 8, 11, 17, 24, 40 and sigma(24) = 60.
MAPLE
with(numtheory): P:= proc(q) local a, k, n; for n from 3 to q do a:=[];
for k from 2 to n-1 do if abs((n mod k)-k/2)<1 then a:=[op(a), k]; fi; od;
for k from 1 to nops(a) do if n=sigma(a[k]) then print(n); break; fi; od;
od; end: P(10^4); # Paolo P. Lava, May 16 2017
PROG
(PARI) isok(n) = {ad = select(t->n%t && t<n, concat(concat(divisors(2*n-1), divisors(2*n+1)), 2*divisors(n))); for (k=1, #ad, if ((n % ad[k]) && (sigma(ad[k])== n), return (1)); ); } \\ Michel Marcus, May 20 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Paolo P. Lava, May 16 2017
EXTENSIONS
More terms from Michel Marcus, May 20 2017
a(22)-a(26) from Jinyuan Wang, Jul 20 2020
a(27)-a(35) from David A. Corneth, Jul 20 2020
STATUS
approved