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

A015874
Numbers k such that phi(k + 10) | (sigma(k) + 10).
0
5, 40, 108, 9544
OFFSET
1,1
COMMENTS
The next term, if it exists, is greater than 10^8. - Charles R Greathouse IV, Sep 25 2012
a(5) > 10^10, if it exists. - Amiram Eldar, Dec 09 2023
MATHEMATICA
Select[Range[10000], Divisible[DivisorSigma[1, #]+10, EulerPhi[#+10]]&] (* Harvey P. Dale, Jul 10 2021 *)
PROG
(PARI) is(n)=!((sigma(n)+10)%eulerphi(n+10)) \\ Charles R Greathouse IV, Sep 25 2012
CROSSREFS
Sequence in context: A222366 A029538 A153795 * A244725 A319098 A209346
KEYWORD
nonn,more
STATUS
approved