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

A358396
Even numbers k such that sigma(k) + sigma(k+2) < 2*sigma(k+1); even terms in A053229.
2
104, 134, 164, 314, 404, 494, 524, 554, 566, 584, 674, 692, 734, 764, 854, 944, 974, 1124, 1154, 1196, 1214, 1304, 1322, 1364, 1394, 1484, 1574, 1682, 1724, 1754, 1784, 1814, 1826, 1844, 1994, 2024, 2144, 2204, 2384, 2414, 2456, 2474, 2564, 2624, 2654, 2804, 2834, 3002
OFFSET
1,1
COMMENTS
Even numbers k such that A053223(k) < 0.
LINKS
EXAMPLE
104 is a term since sigma(105) = 192 is greater than the average of sigma(104) = 210 and sigma(106) = 162.
PROG
(PARI) isA358396(n) = !(n%2) && (sigma(n) + sigma(n+2) < 2*sigma(n+1))
CROSSREFS
Cf. A053229, A053223, A000203 (sigma), A358395.
Sequence in context: A095641 A306291 A055036 * A274357 A052476 A297912
KEYWORD
nonn
AUTHOR
Jianing Song, Nov 13 2022
STATUS
approved