OFFSET
1,1
LINKS
Shyam Sunder Gupta and Donovan Johnson, Table of n, a(n) for n = 1..5000 (first 126 terms from Shyam Sunder Gupta)
EXAMPLE
801340, 801342, 801344, 801346, 801348, 801350 are abundant, thus the smallest number is listed.
MATHEMATICA
AbundantQ[n_] := DivisorSigma[1, n] > 2n; m = 0; a = {}; Do[If[AbundantQ[n], m = m + 1; If[m > 5, AppendTo[a, n - 10]], m = 0], {n, 2, 1000000000, 2}]; a
2*SequencePosition[Table[If[DivisorSigma[1, n]>2n, 1, 0], {n, 2, 2214*10^5, 2}], {1, 1, 1, 1, 1, 1}][[All, 1]] (* Harvey P. Dale, May 12 2022 *)
PROG
(PARI) is(n)=sigma(n, -1)>2 && sigma(n+2, -1)>2 && sigma(n+4, -1)>2 && sigma(n+6, -1)>2 && sigma(n+8, -1)>2 && sigma(n+10, -1)>2 \\ Charles R Greathouse IV, Feb 21 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Shyam Sunder Gupta, Nov 03 2013
STATUS
approved