A333503 Differences between consecutive odd abundant numbers.
630, 630, 630, 630, 630, 630, 630, 420, 210, 450, 180, 210, 420, 180, 450, 210, 330, 90, 420, 210, 420, 210, 630, 630, 630, 630, 420, 210, 630, 630, 630, 210, 420, 630, 630, 630, 630, 630, 630, 90, 330, 210, 630, 630, 630, 210, 330, 90, 630, 210, 420, 630, 630
Offset: 1
Keywords
Links
- Jeppe Stig Nielsen, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
Differences@ Select[Range[947, 3*10^4 + 1, 2], DivisorSigma[1, #] > 2 # &] (* Michael De Vlieger, Mar 25 2020 *)
-
PARI
my(oldn=945); forstep(n=947, 5*10^4, 2, if(sigma(n)>2*n, print1(n-oldn, ", "); oldn=n))
Comments