A101259 Numbers n whose deficiency is 54.
87, 195, 244, 495, 11584, 35595, 137452847104
Offset: 1
Examples
87 is a term of the sequence because 3*29 = 87 and 87 - 29 - 3 = g(87) = 55.
Programs
-
Magma
[n: n in [1..2*10^7] | DivisorSigma(1,n)+54 eq 2*n]; // Vincenzo Librandi, Jul 30 2015
-
Mathematica
Do[ If[ DivisorSigma[1, n] + 54 == 2n, Print[n]], {n, 10^7}] (* Robert G. Wilson v, Dec 22 2004 *)
Extensions
a(7) from Donovan Johnson, Dec 23 2008
Comments