OFFSET
1,1
COMMENTS
Each term of the sequence marks the start of four consecutive antisigma-values for which the sum of the means equals the sum of the extremes.
EXAMPLE
antisigma(6) + antisigma(9) = 9 + 32 = 41; antisigma(7) + antisigma(8) = 20 + 21 = 41, so 6 is a term of the sequence.
MATHEMATICA
antisigma[n_] := (n (n + 1) / 2) - DivisorSigma[1, n]; Select[Range[10^5], antisigma[ # ] + antisigma[ # + 3] == antisigma[ # + 1] + antisigma[ # + 2] &]
CROSSREFS
KEYWORD
nonn
AUTHOR
Joseph L. Pe, Oct 25 2002
EXTENSIONS
a(6)-a(23) from Donovan Johnson, Dec 02 2009
STATUS
approved