A228965 Smallest sets of 8 consecutive abundant numbers in arithmetic progression. The initial abundant number is listed.
221355126, 402640540, 668862580, 739577140
Offset: 1
Keywords
Examples
221355126, 221355128, 221355130, 221355132, 221355134, 221355136, 221355138, 221355140 is the smallest set of 8 consecutive abundant numbers in arithmetic progression so 221355126 is in the list.
Programs
-
Mathematica
AbundantQ[n_] := DivisorSigma[1, n] > 2 n; m = 2; z1 = 18; cd = 6; a = {}; Do[If[AbundantQ[n], If[n - z1 == cd, m = m + 1; If[m > 7, AppendTo[a, n - 7*cd]], m = 2; cd = n - z1]; z1 = n], {n, 19, 1000000000}]; a
Comments