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

A114072
Numbers k such that phi(k) + k is a fourth power.
2
12, 41, 172, 176, 192, 313, 385, 972, 1008, 1201, 2732, 2752, 2816, 3072, 6668, 7321, 14281, 15552, 16128, 25616, 29425, 41761, 43696, 43712, 44032, 45056, 49152, 78732, 78768, 79056, 81648, 84240, 97241, 106688, 123921, 139921
OFFSET
1,1
LINKS
EXAMPLE
phi(41) + 41 = 81 = 3^4.
MATHEMATICA
Select[Range[140000], IntegerQ[Surd[#+EulerPhi[#], 4]]&] (* Harvey P. Dale, Sep 27 2020 *)
PROG
(PARI) isok(n) = ispower(eulerphi(n) + n, 4); \\ Michel Marcus, Jan 09 2014
CROSSREFS
Cf. A000010, A121048, subsequence of A114073.
Sequence in context: A222806 A375804 A251429 * A244793 A218712 A022672
KEYWORD
nonn
AUTHOR
Giovanni Resta, Feb 13 2006
STATUS
approved