login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A238227
Numbers n such that if x=sigma(n)-tau(n)-n then n=sigma(x)-tau(x)-x.
4
1, 56, 66, 70, 992, 1012, 2260, 2516, 6042, 6902, 7192, 7210, 7232, 7750, 7912, 8178, 9086, 10792, 12198, 13706, 17272, 30592, 32778, 33352, 35032, 40166, 44034, 45010, 46670, 47710, 55374, 62296, 63688, 65570, 114256, 132916, 133892, 138244, 141236, 146804, 155572
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);
KEYWORD
nonn
AUTHOR
Paolo P. Lava, Feb 20 2014
STATUS
approved