OFFSET
1,1
COMMENTS
Similar to A024816 but using antisigma(n) instead of sigma(n).
All the semiprimes of the form 8*10^k-1 are terms. - Giovanni Resta, May 29 2016
EXAMPLE
Antisigma of 879 is (879 * 880) / 2 - sigma(879) = 386760 - 1176 = 385584 and phi(879) = 584.
MAPLE
with(numtheory): P:=proc(q) local a, n;
for n from 1 to q do then a:=ilog10(phi(n))+1;
if phi(n)=((n*(n+1)/2-sigma(n)) mod 10^a) then print(n);
fi; od; end: P(10^9);
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Paolo P. Lava, Oct 15 2014
EXTENSIONS
a(18)-a(30) from Giovanni Resta, May 29 2016
STATUS
approved