OFFSET
1,1
COMMENTS
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
59318 is a term since d(59318) = d(59319) = d(59320) = 16, and the prime signatures of these 3 numbers are different: 59318 = 2 * 7 * 19 * 223, 59319 = 3^3 * 13^3, and 59320 = 2^3 * 5 * 1483 have 3 different ordered prime signatures (A124010): [1, 1, 1, 1], [3, 3], and [1, 1, 3].
MATHEMATICA
psig[n_] := Sort @ FactorInteger[n][[;; , 2]]; d[sig_] := Times @@ (sig + 1); vsig = psig /@ Range[2, 4]; seqQ[v_] := Length@Union[v] == 3 && Length @ Union[d /@ v] == 1; seq = {}; Do[If[seqQ[vsig], AppendTo[seq, n - 3]]; vsig = Join[Rest[vsig], {psig[n]}], {n, 5, 10^6}]; seq
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Mar 06 2020
STATUS
approved