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”).

A073500
Numbers n such that sigma(n) = sigma(n+1)+sigma(n-1).
7
954, 1300, 11142, 38214, 89484, 152154, 167784, 254136, 303280, 473316, 574716, 813920, 918080, 1307022, 2008360, 3676242, 9878244, 10368512, 12548754, 19411480, 22493262, 42413484, 77766486, 81513816, 157874000, 240828972
OFFSET
1,1
LINKS
Donovan Johnson and Giovanni Resta, Table of n, a(n) for n = 1..170 (terms < 10^13, first 50 terms from Donovan Johnson)
FORMULA
a(n) = A076528(n)-1 - Alex Ratushnyak, Jul 06 2013.
MATHEMATICA
s1 = s2 = s3 = 0; Do[ s1 = s2; s2 = s3; s3 = DivisorSigma[1, n]; If[ s2 == s1 + s3, Print[n - 1]], {n, 1, 10^8}]
CROSSREFS
Sequence in context: A096954 A048267 A251677 * A121969 A203024 A055161
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Aug 27 2002
EXTENSIONS
Edited and extended by Robert G. Wilson v, Oct 24 2002
a(25)-a(26) from Donovan Johnson, Feb 01 2009
STATUS
approved