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”).

A226118
Numbers n such that sigma(tau(phi(n))) = phi(tau(sigma(n))).
3
1, 2, 136, 160, 170, 204, 240, 282, 716, 745, 1002, 1077, 1465, 1509, 1578, 1868, 2012, 2157, 2346, 2720, 2760, 3608, 3898, 4101, 4461, 4512, 5066, 5322, 5898, 6189, 7080, 7185, 7341, 7628, 7660, 8108, 8517, 8665, 8698, 8709, 8805, 8922, 8940, 9234, 9745, 9962
OFFSET
1,2
LINKS
EXAMPLE
For n=9962 we have:
sigma(9962)=15876 -> tau(15876)=45 -> phi(45)=24.
phi(9962)=4672 -> tau(4672)=14 -> sigma(14)=24.
MAPLE
with(numtheory); A226118:=proc(q) local n;
for n from 1 to q do
if sigma(tau(phi(n)))=phi(tau(sigma(n))) then print(n);
fi; od; end: A226118(10^6);
MATHEMATICA
Select[Range[10000], EulerPhi[DivisorSigma[0, DivisorSigma[1, #]]] == DivisorSigma[ 1, DivisorSigma[ 0, EulerPhi[#]]]&] (* Harvey P. Dale, May 26 2016 *)
KEYWORD
nonn
AUTHOR
Paolo P. Lava, May 27 2013
STATUS
approved