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

A073544
Numbers k such that 1/(1/phi(k) + 1/phi(k+1) + 1/phi(k+2) + 1/phi(k+3)) is an integer.
5
13, 75, 111, 144, 192, 558, 559, 1683, 2016, 3624, 7129, 10369, 11658, 18362, 19442, 19800, 19801, 32772, 47627, 60482, 82082, 133988, 143642, 229321, 291721, 312483, 352846, 390603, 395136, 436801, 465482, 600601, 711936, 806736, 819729
OFFSET
1,1
EXAMPLE
1/phi(75)+1/phi(76)+1/phi(77)+1/phi(78) = 1/40+1/36+1/60+1/24 = 1/9 so 75 is in the sequence.
MATHEMATICA
Select[Range[900000], IntegerQ[1/Sum[1/EulerPhi[ #+i], {i, 0, 3}]]&]
PROG
(PARI) isok(k) = numerator(1/eulerphi(k) + 1/eulerphi(k+1) + 1/eulerphi(k+2) + 1/eulerphi(k+3)) == 1; \\ Michel Marcus, Feb 18 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Aug 27 2002
EXTENSIONS
Edited by Dean Hickerson, Sep 03 2002
STATUS
approved