A092991 Least product of the parts of the partitions of n where that product has the maximum number of divisors.
1, 1, 2, 2, 4, 6, 6, 12, 12, 24, 36, 48, 60, 60, 120, 180, 240, 360, 360, 720, 1080, 1440, 2160, 2880, 2520, 6480, 5040, 7560, 10080, 15120, 20160, 30240, 45360, 60480, 75600, 120960, 151200, 226800, 302400, 453600, 604800, 907200, 1209600, 1814400
Offset: 0
Keywords
Examples
a(9) = 24 corresponding to the partition (2,2,2,3). a(8) = 12 corresponding to the partition (1,3,4). Another partition (3,3,2) gives a product 18 with same number of divisors 6 but 18>12 hence a(8) = 12.
Links
- David A. Corneth, Table of n, a(n) for n = 0..945 (first 88 terms from Amiram Eldar)
Programs
-
Mathematica
a[n_] := Module[{t = Transpose[{t = Times @@@ IntegerPartitions[n], DivisorSigma[0, t]}]}, MaximalBy[SortBy[t, Last], Last, 1][[1, 1]]]; Array[a, 50, 0] (* Amiram Eldar, Apr 13 2024 *)
Extensions
Corrected and extended by Franklin T. Adams-Watters, Jun 14 2006
Comments