OFFSET
1,1
COMMENTS
Subsequence of A120944.
LINKS
Donovan Johnson, Table of n, a(n) for n = 1..100
EXAMPLE
Prime factors of 51653 are 7, 47 and 157 while d(51653) = 8. We have that 51653 - 8 = 51645 and 51645 / (7 + 8) = 3443, 51645 / (47 + 8) = 939 and 51645 / (157 + 8) = 313.
MAPLE
with(numtheory); P:=proc(q) local a, i, ok, p, n;
for n from 1 to q do if not isprime(n) and issqrfree(n) then
a:=ifactors(n)[2]; ok:=1; for i from 1 to nops(a) do
if not type((n-tau(n))/(a[i][1]+tau(n)), integer) then ok:=0; break; fi; od;
if ok=1 then print(n); fi; fi; od; end: P(10^9);
CROSSREFS
KEYWORD
nonn
AUTHOR
Paolo P. Lava, Aug 20 2013
EXTENSIONS
More terms from Michel Marcus, Sep 21 2013
First term deleted by Paolo P. Lava, Sep 23 2013
STATUS
approved