A337738 Terms of A171641 with a record number of divisors.
738, 3492, 14184, 58896, 236448, 954432, 2549700, 10884600, 44989200
Offset: 1
Examples
The number of divisors of each of the first 33 terms of A171641 is 12. A171641(34) = 3492 has 18 divisors, and it is the first term with more than 12 divisors. Therefore, a(2) = 3492.
Programs
-
Mathematica
nonZumQ[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]] == 0]; dm = 0; s = {}; Do[d = DivisorSigma[0, n]; If[d > dm, q = nonZumQ[n]; If[q && d > dm, dm = d; AppendTo[s, n]]], {n, 1, 60000}]; s
Extensions
a(8)-a(9) from Amiram Eldar, Apr 04 2023
Comments