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

A062976
Half-totient function of n is divisible by the number of divisors of n.
0
5, 9, 13, 15, 17, 28, 29, 34, 35, 37, 39, 40, 41, 45, 49, 51, 52, 53, 55, 61, 63, 65, 72, 73, 76, 82, 84, 85, 87, 89, 90, 91, 95, 97, 99, 101, 102, 104, 105, 109, 111, 113, 115, 117, 119, 120, 123, 124, 128, 130, 136, 137, 140, 143, 145, 146, 147, 148, 149, 153, 155
OFFSET
3,1
COMMENTS
Half-totient function is phi(n)/2 for n >= 3, A023022.
MATHEMATICA
Select[Range[200], Divisible[EulerPhi[#]/2, DivisorSigma[0, #]]&] (* Harvey P. Dale, Feb 06 2019 *)
PROG
(PARI) j=[]; for(n=3, 350, if(Mod(eulerphi(n)/2, numdiv(n))==0, j=concat(j, n))); j
CROSSREFS
Cf. A023022.
Sequence in context: A314651 A194371 A314652 * A354798 A314653 A080580
KEYWORD
nonn
AUTHOR
Jason Earls, Jul 24 2001
STATUS
approved