A343794 Numbers k > 0 such that 630*k + 315 is not an abundant number (A005101).
53, 54, 56, 63, 65, 68, 69, 74, 75, 78, 81, 83, 86, 89, 90, 95, 96, 98, 99, 105, 111, 113, 114, 116, 119, 120, 125, 128, 131, 134, 135, 138, 140, 141, 146, 153, 155, 156, 158, 165, 168, 173, 174, 176, 179, 183, 186, 189, 191, 194, 198, 200, 204, 209, 210, 215
Offset: 1
Keywords
Examples
53 is a term since 630*53 + 315 = 33705 is not an abundant number.
References
- David Wells, The Penguin Dictionary of Curious and Interesting Numbers, 2nd ed., Penguin, 1997, p. 155.
- M. T. Whalen and C. L. Miller, Odd abundant numbers: some interesting observations, Journal of Recreational Mathematics 22 (1990), pp. 257-261.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
- Jean-Marie De Koninck, Those Fascinating Numbers, Amer. Math. Soc., (2009), page 113.
- Jay L. Schiffman, Odd Abundant Numbers, Mathematical Spectrum, Vol. 37, No. 2 (2005), pp. 73-75.
Programs
-
Mathematica
abQ[n_] := DivisorSigma[1, n] > 2*n; Select[Range[200], !abQ[630*# + 315] &]
Comments