A015858 Numbers k such that phi(k) | sigma(k + 11).
1, 2, 3, 4, 6, 8, 9, 10, 12, 13, 16, 18, 19, 20, 24, 35, 36, 45, 49, 51, 74, 77, 79, 84, 91, 104, 108, 113, 124, 129, 130, 144, 148, 180, 198, 219, 224, 279, 286, 308, 380, 407, 434, 435, 459, 490, 584, 609, 610, 616, 624, 627, 628, 640, 644, 679, 779
Offset: 1
Keywords
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
Crossrefs
Programs
-
Magma
[n: n in [1..900] | DivisorSigma(1,n+11) mod EulerPhi(n) eq 0]; // G. C. Greubel, Dec 13 2018
-
Mathematica
Select[Range[800],Divisible[DivisorSigma[1,#+11],EulerPhi[#]]&] (* Harvey P. Dale, Aug 01 2016 *)
-
PARI
is(n)=!(sigma(n+11)%eulerphi(n)) \\ Charles R Greathouse IV, Sep 25 2012
Extensions
Missing a(1)=1 inserted by Sean A. Irvine, Dec 13 2018
Comments