A101260 Numbers n whose abundance is 56.
84, 140, 224, 308, 364, 476, 532, 644, 812, 868, 1036, 1148, 1204, 1316, 1372, 1484, 1652, 1708, 1876, 1988, 2044, 2212, 2324, 2492, 2716, 2828, 2884, 2996, 3052, 3164, 3556, 3668, 3836, 3892, 4172, 4228, 4396, 4544, 4564, 4676, 4844, 5012, 5068, 5348
Offset: 1
Examples
84 is a term of the sequence because 2*2*3*7 = 84 and 84 - 42 - 28 - 21 - 14 - 12 - 7 - 6 - 4 - 3 - 2 = g(84) = -55.
Links
- Enrique Pérez Herrero, Table of n, a(n) for n = 1..3000
- F. Firoozbakht and M. F. Hasler, Variations on Euclid's formula for Perfect Numbers, JIS 13 (2010) #10.3.1.
Programs
-
Magma
[n: n in [1..10^4] |DivisorSigma(1,n) eq 2*n+56]; // Vincenzo Librandi, Jul 30 2015
-
Mathematica
Select[ Range[5500], DivisorSigma[1, # ] == 2# + 56 &] (* Robert G. Wilson v, Dec 22 2004 *)
Comments