OFFSET
1,2
COMMENTS
If the second term (4) is not considered, A056075 is almost a subset of this sequence: it lists the fixed points of the transform n -> sigma(n)-tau(n)-n.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..1001 (terms 1..50 from Paolo P. Lava)
EXAMPLE
Fixed points: 56, 7192, 7232, 7912, 10792, ...
sigma(66) = 144, tau(66) = 8 and 144 - 8 - 66 = 70.
sigma(70) = 144, tau(70) = 8 and 144 - 8 - 70 = 66.
MAPLE
with(numtheory); P:=proc(q)local a, n;
for n from 1 to q do a:=sigma(n)-tau(n)-n;
if sigma(a)-tau(a)-a=n then print(n);
fi; od; end: P(10^6);
CROSSREFS
KEYWORD
nonn
AUTHOR
Paolo P. Lava, Feb 20 2014
STATUS
approved