login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A088006
Abundance values which are +1 or -1 times a prime.
1
-2, -5, -2, 3, 2, -19, 19, -41, -7, -41, 17, 2, -109, -2, 7, -47, -271, 199, -127, 71, 2, -37, 499, 2, -71, 199, 353, -811, 1021, -929, 59, -457, -449, -163, -683, -157, 41, -751, 251, 2, -2161, -19, 401, 467, -61, 967, -631, -3659, -2777, 3391, -4421, 269, -2333, -1201, -4969, 4999, -1103, -2647, -1097, 269
OFFSET
1,1
FORMULA
Solutions x to sigma[n]-2n=x where Abs[x] is a prime number.
EXAMPLE
n=18: sigma[18]=18+9+6+3+2+1=39, 2n=36, abundance=3, a prime;
n=25: sigma[25]=25+5+1=31, 2n=50, abundance=-19.
MATHEMATICA
ab[x_] := DivisorSigma[1, x]-2*x Do[If[PrimeQ[s=ab[n]], Print[s]], {n, 1, 10000}]
Select[Table[DivisorSigma[1, n]-2n, {n, 7000}], PrimeQ[Abs[#]]&] (* Harvey P. Dale, Aug 21 2011 *)
CROSSREFS
KEYWORD
sign
AUTHOR
Labos Elemer, Oct 18 2003
STATUS
approved