cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A211385 Values of n for which product_{p|n, p prime} 1 + 1/p > e^gamma*log(log(n)).

Original entry on oeis.org

2, 3, 4, 5, 6, 8, 10, 12, 18, 30
Offset: 1

Views

Author

Arkadiusz Wesolowski, Feb 07 2013

Keywords

Comments

30 is the last term:
- if and only if the Riemann hypothesis is true
- for which sigma(n) > tau(n)*phi(n)
- which appears in A060735

Crossrefs

Programs

  • Mathematica
    lst = {}; Do[If[Times @@ (1 + 1/Transpose[FactorInteger[n]][[1]]) > E^EulerGamma*Log@Log[n], AppendTo[lst, n]], {n, 2, 30}]; lst