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.

A227243 Powerful numbers n such that n/phi(n) >= e^gamma*log log n.

Original entry on oeis.org

4, 8, 9, 16, 36, 72, 108, 144, 216, 900, 1800, 2700, 3600, 44100, 88200
Offset: 1

Views

Author

Arkadiusz Wesolowski, Oct 20 2013

Keywords

Comments

The sequence is complete.

Crossrefs

Programs

  • Mathematica
    PowerfulQ[1] := True; PowerfulQ[n_Integer?Positive] := Min[Last /@ FactorInteger[n]] > 1; Select[Range[100], PowerfulQ[#] && #/EulerPhi[#] >= E^EulerGamma*Log[Log[#]] &] (* G. C. Greubel, Oct 02 2017 *)
  • PARI
    a=exp(Euler); for(n=4, 88200, if(ispowerful(n)&&n/eulerphi(n)>=a*log(log(n)), print1(n, ", ")));

Formula

A001694 INTERSECT A100966.