OFFSET
1,1
COMMENTS
Heuristics would seem to indicate that this sequence is infinite and sparse. Compare this sequence to the positive integers k that divide sigma(k) - the perfect and multiperfect numbers.
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..36 (terms < 10^13)
EXAMPLE
33 is in this list because sigma(32) + sigma(33) + sigma(34) = 63 + 48 + 54 = 165 = 33*5.
PROG
(PARI) for(i=2, 99999, if((sigma(i-1)+sigma(i)+sigma(i+1))%i==0, print(i)))
CROSSREFS
KEYWORD
nonn
AUTHOR
Jack Brennen, Jul 01 2002
EXTENSIONS
More terms from Jason Earls, Aug 25 2002
a(18)-a(26) from Donovan Johnson, Feb 01 2009
a(27)-a(29) from Donovan Johnson, Sep 17 2013
STATUS
approved