A018894 Numbers k such that sigma(k)/phi(k) sets a new record.
1, 2, 4, 6, 12, 24, 30, 60, 120, 180, 210, 360, 420, 840, 1260, 1680, 2520, 4620, 9240, 13860, 18480, 27720, 55440, 110880, 120120, 180180, 240240, 360360, 720720, 1441440, 2162160, 3603600, 4084080, 4324320, 6126120, 12252240, 24504480, 36756720, 61261200
Offset: 1
Keywords
Links
- David A. Corneth, Table of n, a(n) for n = 1..241 (first 79 terms from Jud McCranie)
- Jorg Brown, Comparison of records in sigma(n)/phi(n) and A018892
- David A. Corneth, Conjectured 6522 terms <= 10^1000
Programs
-
Mathematica
Flatten@ Function[k, FirstPosition[k, #] & /@ Union@ Rest@ FoldList[Max, 0, k]]@ Array[DivisorSigma[1, #]/EulerPhi@ # &, 10^7] (* Michael De Vlieger, May 27 2016, Version 10 *)
-
PARI
lista(nn) = {mse = 0; for (n=1, nn, se = sigma(n)/eulerphi(n); if (se > mse, print1(n, ", "); mse = se););} \\ Michel Marcus, Jul 10 2015
Extensions
More terms from Jud McCranie, Nov 09 2001
Initial term added by Arkadiusz Wesolowski, Sep 06 2012
Comments