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

A114063
Numbers k such that phi(k) = tau(k)^4, where tau(k) = A000005(k).
6
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,2
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
LINKS
Max Alekseyev, Table of n, a(n) for n = 1..94030 (first 660 terms from Enrique Pérez Herrero; terms 661..7000 from Giovanni Resta)
EXAMPLE
phi(33003) = 20736. tau(33003) = 12, 20736 = 12^4.
a(2) = A107655(4) = 17.
MATHEMATICA
Select[Range[10^6], EulerPhi[#] == DivisorSigma[0, #]^4 &] (* Paolo Xausa, May 31 2024 *)
PROG
(PARI) isok(n) = eulerphi(n) == numdiv(n)^4; \\ Michel Marcus, Jan 22 2014
CROSSREFS
KEYWORD
fini,full,nonn
AUTHOR
Giovanni Resta, Feb 13 2006
STATUS
approved