A231545 Numbers n such that n = sigma(n) - sigma(n-1).
2, 6, 8586, 16120, 29886160
Offset: 1
Keywords
Examples
6 is in sequence because antisigma(6) = antisigma(5) = 9.
Formula
a(n) = A067816(n) + 1.
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
6 is in sequence because antisigma(6) = antisigma(5) = 9.
12 is in sequence because antisigma(12) = 50 < antisigma(11) = 54.
Select[Range[350],#<(DivisorSigma[1,#]-DivisorSigma[1,#-1])&] (* Harvey P. Dale, May 26 2016 *)
is(n)=nCharles R Greathouse IV, Jul 14 2024
10 is in sequence because antisigma(10) = 37 > antisigma(9) = 32.
with(numtheory); A231711:=n->`if`(sigma(n)-sigma(n-1)A231711(n), n=1..100); # Wesley Ivan Hurt, Nov 14 2013
isok(n) = n > sigma(n) - sigma(n-1); \\ Michel Marcus, Nov 14 2013
Comments