A103292 Numbers k such that sigma(2^k - 1) >= 2(2^k - 1), i.e., the number 2^k - 1 is perfect or abundant.
12, 24, 36, 40, 48, 60, 72, 80, 84, 90, 96, 108, 120, 132, 140, 144, 156, 160, 168, 180, 192, 200, 204, 210, 216, 220, 228, 240, 252, 264, 270, 276, 280, 288, 300, 312, 320, 324, 330, 336, 348, 360, 372, 384, 396, 400, 408, 420, 432, 440, 444, 450, 456, 468, 480, 492, 504
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..135
Programs
-
PARI
for(i=1,1000,n=2^i-1;if(sigma(n)>=2*n,print(i)));
Extensions
Extended to a(32) by R. J. Mathar, Aug 07 2007
Terms from a(33) onwards from David Wasserman, May 16 2008
Comments