A358395 Odd numbers k such that sigma(k) + sigma(k+2) > 2*sigma(k+1); odd terms in A053228.
1125, 1573, 1953, 2205, 2385, 3465, 5185, 5353, 5773, 6433, 6613, 6825, 7245, 7425, 7665, 7693, 8505, 8925, 9133, 9205, 9405, 9945, 10393, 10773, 11473, 11653, 12285, 12493, 12705, 13473, 13585, 13725, 14025, 15013, 15145, 15433, 16065, 16245, 16905, 17253, 17325, 17953
Offset: 1
Keywords
Examples
1125 is a term since sigma(1126) = 1692 is smaller than the average of sigma(1125) = 2028 and sigma(1127) = 1368.
Links
- Jianing Song, Table of n, a(n) for n = 1..20000
- Mercurial, the Spectre, Abundant numbers coprime to n, Hi.gher. Space.
- Wikipedia, Dirichlet's theorem on arithmetic progressions
Programs
-
PARI
isA358395(n) = (n%2) && (sigma(n) + sigma(n+2) > 2*sigma(n+1))
Comments