A211385 Values of n for which product_{p|n, p prime} 1 + 1/p > e^gamma*log(log(n)).
2, 3, 4, 5, 6, 8, 10, 12, 18, 30
Offset: 1
Keywords
Links
- Eric W. Weisstein, MathWorld: Riemann Hypothesis
Programs
-
Mathematica
lst = {}; Do[If[Times @@ (1 + 1/Transpose[FactorInteger[n]][[1]]) > E^EulerGamma*Log@Log[n], AppendTo[lst, n]], {n, 2, 30}]; lst
Comments