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

A067235
Numbers k such that phi(4k-1) = sigma(k).
3
660, 744, 4216, 6460, 10780, 11880, 14688, 27820, 32524, 37464, 40120, 59964, 87124, 110770, 120934, 125764, 184264, 190564, 194584, 210324, 264280, 269514, 295144, 297388, 298840, 314974, 379204, 384750, 396256, 396520, 406296, 444244, 473524, 597480
OFFSET
1,1
COMMENTS
Are there any odd terms in the sequence?
LINKS
MATHEMATICA
Select[Range[600000], EulerPhi[4*# - 1] == DivisorSigma[1, #] &] (* Amiram Eldar, May 09 2022 *)
PROG
(PARI) for(n=1, 10^9, if(eulerphi(4*n-1)==sigma(n), print(n))) /* Donovan Johnson, Aug 18 2012 */
CROSSREFS
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Feb 20 2002
EXTENSIONS
More terms from Harvey P. Dale, Feb 26 2002
STATUS
approved