A306491 Numbers that set a record for the number of distinct prime signatures represented among their divisors (A085082).
1, 2, 4, 8, 12, 24, 48, 96, 144, 192, 288, 480, 576, 720, 1152, 1440, 2880, 4320, 5760, 8640, 11520, 17280, 34560, 51840, 69120, 103680, 120960, 138240, 207360, 241920, 345600, 362880, 414720, 483840, 604800, 725760, 829440, 967680, 1209600, 1451520, 1814400
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..533
- Amiram Eldar, Table of n, a(n), A085082(a(n)) for n = 1..533
Programs
-
Mathematica
ps[1] = {}; ps[n_] := FactorInteger[n][[All, 2]] // Sort; a[n_] := ps /@ Divisors[n] // Union // Length; s={}; am=0; Do[a1=a[n]; If[a1>am, am=a1; AppendTo[s, n]], {n, 1, 2*10^6}]; s (* after Jean-François Alcover at A085082 *)
Comments