OFFSET
1,1
COMMENTS
Conjecture: sequence contains odd values only. - Benoit Cloitre, Feb 18 2002
LINKS
Donovan Johnson, Table of n, a(n) for n = 1..100
EXAMPLE
sigma(309-1) + sigma(309+1) = 672+576 = sigma(2*309), so 309 is a term of the sequence.
MATHEMATICA
Select[Range[10^6], DivisorSigma[1, # - 1] + DivisorSigma[1, # + 1] == DivisorSigma[1, 2# ] &]
PROG
(PARI) a067730(m) = for(n=2, m, if(sigma(n-1)+sigma(n+1)==sigma(2*n), print1(n, ", "))) a067730(10^7)
CROSSREFS
KEYWORD
nonn
AUTHOR
Joseph L. Pe, Feb 05 2002
EXTENSIONS
More terms from Klaus Brockhaus, Feb 07 2002
Edited and extended by Robert G. Wilson v, Feb 08 2002
a(21)-a(27) from Donovan Johnson, Jan 31 2009
STATUS
approved