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

A336384
Numbers of the form k = x*y where phi(k) = 3*(phi(x) + phi(y)).
1
36, 56, 63, 65, 72, 84, 104, 105, 126, 130, 140, 156, 168, 180, 210
OFFSET
1,1
COMMENTS
There are 35 solutions (x, y) to phi(x*y) = 3*(phi(x) + phi(y)): (4, 14), (4, 18), (5, 13), (5, 21), (5, 26), (5, 28), (5, 36), (5, 42), (6, 6), (6, 14), (7, 9), (7, 18), (8, 13), (8, 21), (9, 7), (9, 14), (10, 13), (10, 21), (12, 13), (13, 5), (13, 8), (13, 10), (13, 12), (14, 4), (14, 6), (14, 9), (18, 4), (18, 7), (21, 5), (21, 8), (21, 10), (26, 5), (28, 5), (36, 5), (42, 5).
PROG
(PARI) is(k) = fordiv(k, d, if(eulerphi(k) == 3*(eulerphi(d) + eulerphi(k/d)), return(1))); 0;
CROSSREFS
Sequence in context: A335104 A242343 A243540 * A124941 A116321 A187989
KEYWORD
nonn,fini,full
AUTHOR
Jinyuan Wang, Jul 31 2020
STATUS
approved