OFFSET
1,2
COMMENTS
The numbers of terms that do not exceed 10^k, for k = 1, 2, ..., are 4, 19, 173, 1837, 18241, 182810, 1829411, 18292269, 182909074, 1829124992, ... . Apparently, the asymptotic density of this sequence exists and equals 0.18291... . - Amiram Eldar, Feb 11 2025
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
MATHEMATICA
Do[s=(DivisorSigma[1, n]+DivisorSigma[1, n+1])/ DivisorSigma[1, 2*n+1]; If[ !Greater[s, 1], Print[n]], {n, 1, 10000000}]
PROG
(PARI) is(n)=sigma(n)+sigma(n+1)<=sigma(2*n+1) \\ Charles R Greathouse IV, Feb 14 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Feb 16 2004
EXTENSIONS
New name from Charles R Greathouse IV, Feb 14 2013
STATUS
approved