A337739 Terms of A083209 with a record number of divisors.
6, 12, 56, 176, 550, 2752, 3230, 8925, 351351
Offset: 1
Examples
The first 5 terms of A083209 are 6, 12, 20, 28, 56. Their numbers of divisors are 4, 6, 6, 6, 8. The record values, 4, 6 and 8 occur at 6, 12 and 56.
Programs
-
Mathematica
zumsingleQ[n_] := Module[{d = Divisors[n], sum, x}, sum = Plus @@ d; sum >= 2*n && EvenQ[sum] && CoefficientList[Product[1 + x^i, {i, d}], x][[1 + sum/2]] == 2]; dm = 0; s = {}; Do[d = DivisorSigma[0, n]; If[d > dm, q = zumsingleQ[n]; If[q && d > dm, dm = d; AppendTo[s, n]]], {n, 1, 10^4}]; s
Comments