OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..1000
EXAMPLE
82004 is in the sequence because it is abundant (sum divisors = 164640, > 2*82004) and 82005 is also abundant (sum divisors = 165888, > 2*82005).
MATHEMATICA
fQ[m_] := DivisorSigma[1, m] > 2 m;
gQ[m_] := fQ[m] && Union[fQ /@ Rest[Most[Divisors[m]]]] == {False};
V = Select[Range[10^7], gQ]; Intersection[V, V - 1]
CROSSREFS
KEYWORD
nonn
AUTHOR
Emmanuel Vantieghem, May 02 2017
STATUS
approved