login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A053226 Numbers k for which sigma(k) > sigma(k+1). 18
4, 6, 8, 10, 12, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 45, 46, 48, 50, 52, 54, 56, 58, 60, 64, 66, 68, 70, 72, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 105, 106, 108, 110, 112, 114, 116, 117, 118, 120, 122, 124, 126, 128, 130 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The asymptotic density of this sequence is 1/2 (Erdős, 1936). - Amiram Eldar, Mar 19 2021
LINKS
Paul Erdős, On a problem of Chowla and some related problems, Mathematical Proceedings of the Cambridge Philosophical Society, Vol. 32, No. 4 (1936), pp. 530-540; alternative link.
MAPLE
with(numtheory): seq( `if`((sigma(i) > sigma(i+1)), i, print( )), i=1..139);
MATHEMATICA
Select[Range[150], DivisorSigma[1, #] > DivisorSigma[1, # + 1] &] (* Carl Najafi, Aug 16 2011 *)
PROG
(Haskell)
import Data.List (findIndices)
a053226 n = a053226_list !! (n-1)
a053226_list = map (+ 1) $ findIndices (< 0) a053222_list
-- Reinhard Zumkeller, Oct 16 2011
(PARI) is(n)=sigma(n)>sigma(n+1) \\ Charles R Greathouse IV, Mar 09 2014
CROSSREFS
Sequence in context: A167179 A193167 A020645 * A227112 A051756 A322839
KEYWORD
nonn
AUTHOR
Asher Auel, Jan 06 2000
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 16:38 EDT 2024. Contains 371794 sequences. (Running on oeis4.)