OFFSET
1,1
COMMENTS
Subsequence of A120944.
EXAMPLE
Prime factors of 10778 are 2, 17, 317 and sigma(10778) = 17172, tau(10778) = 8.
10778 + 17172 = 27950 and 27950 / (2 + 8) = 2795, 27950 / (17 + 8) = 1118, 27950 / (317 + 8) = 86.
MAPLE
with (numtheory); P:=proc(q) local a, b, c, i, ok, p, n;
for n from 2 to q do if not isprime(n) then a:=ifactors(n)[2]; ok:=1;
for i from 1 to nops(a) do if a[i][2]>1 then ok:=0; break;
else if not type((n+sigma(n))/(a[i][1]+tau(n)), integer) then ok:=0; break; fi; fi; od; if ok=1 then print(n); fi; fi; od; end: P(2*10^6);
CROSSREFS
KEYWORD
nonn
AUTHOR
Paolo P. Lava, Sep 19 2013
EXTENSIONS
a(4) corrected and a(7)-a(26) by Giovanni Resta, Sep 20 2013
First term deleted by Paolo P. Lava, Sep 23 2013
STATUS
approved