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

A359434
Numbers k >= 1 such that k * phi(k) / (k + phi(k)) is an integer, where phi(k) = A000010(k).
0
12, 24, 36, 48, 72, 96, 108, 126, 144, 176, 192, 216, 252, 288, 324, 352, 378, 384, 432, 504, 576, 648, 704, 756, 768, 864, 882, 972, 1008, 1134, 1152, 1296, 1408, 1512, 1536, 1728, 1764, 1936, 1944, 2016, 2268, 2304, 2592, 2646, 2752, 2816, 2916
OFFSET
1,1
COMMENTS
For k >= 12, A003586 is a subsequence.
EXAMPLE
k = 12 : 12 * phi(12) / (12 + phi(12)) = 12 * 4 / (12 + 4) = 3, thus 12 is a term.
MATHEMATICA
Select[Range[3000], Divisible[#*(phi = EulerPhi[#]), # + phi] &] (* Amiram Eldar, Dec 31 2022 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Ctibor O. Zizka, Dec 31 2022
STATUS
approved