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

A091289
Integer solutions x to sigma(x) + sigma(x+1) = 2*sigma(2x+1) where sigma = A000203.
2
215, 923, 944, 1715, 2379, 5355, 38429, 87584, 110483, 212795, 291039, 1016519, 1051644, 1198139, 2729979, 9380447, 9397674, 31476500, 31749948, 33146259, 33497064, 47004099, 50482278, 52026408, 54114528, 61571795, 79000679, 162914079, 190974539, 212196564, 277017455
OFFSET
1,1
MATHEMATICA
Do[s=(DivisorSigma[1, n]+DivisorSigma[1, n+1])/ DivisorSigma[1, 2*n+1]; If[Equal[s, 2], Print[n]], {n, 1, 10000000}]
PROG
(PARI) isok(n) = sigma(n) + sigma(n+1) == 2*sigma(2*n+1); \\ Michel Marcus, Jul 29 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Feb 16 2004
EXTENSIONS
a(16)-a(27) from Donovan Johnson, Jan 31 2009
a(28)-a(31) from Amiram Eldar, May 23 2022
STATUS
approved