OFFSET
1,1
REFERENCES
A. H. Beiler, Recreations in the Theory of Numbers, Dover, NY, 1964, p. 23.
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
FORMULA
d(n) > 4 and even.
a(n) = n + O(n/log n). - Charles R Greathouse IV, Oct 23 2015
MATHEMATICA
ppdQ[n_]:=Module[{c=Log[n, Times@@Most[Divisors[n]]]}, c>1&&IntegerQ[c]]; Select[Range[2, 160], ppdQ] (* Harvey P. Dale, Mar 06 2012 *)
Select[Range[154], EvenQ[(d = DivisorSigma[0, #])] && d > 4 &] (* Amiram Eldar, Nov 20 2019 *)
CROSSREFS
KEYWORD
nonn,easy
STATUS
approved