cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A226119 Numbers such that sigma(phi(tau(n)))=tau(phi(sigma(n))).

Original entry on oeis.org

1, 6, 36, 64, 105, 114, 135, 1980, 2016, 3072, 5120, 7056, 7840, 9216, 16320, 18720, 18900, 23100, 23622, 24003, 25536, 26088, 26733, 28455, 29078, 29337, 29700, 29760, 30597, 30894, 30912, 31155, 31496, 31758, 32361, 33782, 34020, 34286, 36000, 36036, 36099
Offset: 1

Views

Author

Paolo P. Lava, May 27 2013

Keywords

Examples

			29337 is in the sequence since:
sigma(29337)=49152 -> phi(49152)=16384 -> tau(16384)=15.
tau(29337)=16 -> phi(16)=8 -> sigma(8)=15.
		

Crossrefs

Programs

  • Maple
    with(numtheory); A226119:=proc(q) local n;
    for n from 1 to q do
    if sigma(phi(tau(n)))=tau(phi(sigma(n))) then print(n);
    fi; od; end: A226119(10^6);
  • Mathematica
    Select[Range[36099], DivisorSigma[1, EulerPhi[DivisorSigma[0, #]]] == DivisorSigma[0, EulerPhi[DivisorSigma[1, #]]] &] (* T. D. Noe, May 28 2013 *)