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.

A114063 Numbers k such that phi(k) = tau(k)^4, where tau(k) = A000005(k).

Original entry on oeis.org

1, 17, 514, 8738, 32301, 33003, 36351, 41504, 42292, 43852, 51860, 62226, 549117, 561051, 571311, 599067, 617967, 629811, 634005, 657495, 673184, 674505, 683168, 701024, 705568, 718964, 722684, 732628, 745484, 759772, 774368
Offset: 1

Views

Author

Giovanni Resta, Feb 13 2006

Keywords

Comments

For all large enough k, we have tau(k) < k^(1/5) and phi(k) > k^(4/5). Hence, tau(k)^4 < k^(4/5) < phi(k), implying that this sequence is finite. - Max Alekseyev, Mar 10 2016
Sequence is composed of 94030 terms. - Max Alekseyev, Jun 01 2024

Examples

			phi(33003) = 20736. tau(33003) = 12, 20736 = 12^4.
a(2) = A107655(4) = 17.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[10^6], EulerPhi[#] == DivisorSigma[0, #]^4 &] (* Paolo Xausa, May 31 2024 *)
  • PARI
    isok(n) = eulerphi(n) == numdiv(n)^4; \\ Michel Marcus, Jan 22 2014