A306776 Numbers that are the sum of two abundant numbers (not necessarily distinct) in a record number of ways.
24, 36, 48, 60, 84, 90, 96, 108, 120, 144, 168, 180, 216, 240, 264, 288, 300, 336, 360, 408, 420, 480, 540, 576, 588, 600, 660, 720, 780, 840, 924, 960, 1008, 1080, 1140, 1200, 1260, 1320, 1380, 1428, 1440, 1500, 1560, 1620, 1680, 1920, 1980, 2040, 2100, 2280
Offset: 1
Keywords
Examples
a(1) = 24 = 12 + 12 (one way); a(2) = 36 = 12 + 24 = 18 + 18 (2 ways); a(3) = 48 = 12 + 36 = 18 + 30 = 24 + 24 (3 ways); a(4) = 60 = 12 + 48 = 18 + 42 = 20 + 40 = 24 + 36 = 30 + 30 (5 ways).
References
- Eric A. Weiss, ed., A Computer Science Reader: Selections from ABACUS, Springer Science & Business Media, New York, 1988, p. 336.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..1000
- Amiram Eldar, Table of n, a(n), record values for n = 1..1000
- Richard V. Andree, Computer-Assisted Problem Solving, ABACUS, Vol. 2, No. 3 (Spring 1985), pp. 61-71 (reprinted in Weiss's book).
Programs
-
Mathematica
nm=1000; ab=Select[Range[nm], DivisorSigma[1,#] > 2# &]; f[n_] := Length[ IntegerPartitions[n, {2}, ab]]; s={}; fm=0; Do[f1 = f[n]; If[f1>fm, fm=f1; AppendTo[s,n]], {n, 1, nm}]; s
Comments