A182147 Numbers n equal to the sum of its proper divisors greater than square root of n.
42, 54, 66, 78, 102, 114, 138, 174, 186, 222, 246, 258, 282, 318, 354, 366, 402, 426, 438, 474, 498, 534, 582, 606, 618, 642, 654, 678, 762, 786, 812, 822, 834, 868, 894, 906, 942, 978, 1002, 1036, 1038, 1074, 1086, 1146, 1148, 1158, 1182, 1194, 1204, 1266
Offset: 1
Keywords
Examples
The proper divisors of 42 greater than sqrt(42) are 7, 14 and 21, and 7 + 14 + 21 = 42.
Links
- Reinhard Zumkeller, Table of n, a(n) for n = 1..10000
- Discussion on MathForum (in Spanish), March 2003.
Programs
-
Haskell
a182147 n = a182147_list !! (n-1) a182147_list = [w | w <- [1..] , sum (dropWhile (<= a000196 w) $ a027751_row $ fromInteger w) == w] -- Reinhard Zumkeller, Apr 18 2012
-
Mathematica
d[n_] := Select[Most[Divisors[n]], # > Sqrt[n] &]; Select[Range[2, 2000], # == Total[d[#]] &] (* T. D. Noe, Apr 16 2012 *)
Comments