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

A067382
Numbers n such that sigma(phi(n))/sigma(n) = 2.
7
13, 71, 89, 203, 305, 319, 667, 1363, 1421, 1525, 1711, 1889, 2407, 2933, 3103, 4609, 4615, 4843, 5191, 6583, 7123, 7625, 7627, 9947, 10063, 10411, 11107, 13543, 13891, 14587, 16327, 17023, 19693, 20851, 23075, 24331, 24721, 25027, 25723
OFFSET
1,1
COMMENTS
Sequence is infinite. Contains subsequences like 5^i*61, 5^i*13*71, 7^i*29 ... (see also Farideh Firoozbakht's comment on A033631.) - vim(AT)gmx.li, Nov 03 2006
LINKS
MATHEMATICA
For[ n=1, True, n++, If[ DivisorSigma[ 1, EulerPhi[ n ] ]/DivisorSigma[ 1, n ]==2, Print[ n ] ] ]
PROG
(PARI) is(n)=sigma(eulerphi(n=factor(n)))/sigma(n)==2 \\ Charles R Greathouse IV, Nov 27 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Dean Hickerson, Jan 20 2002
STATUS
approved