OFFSET
1,1
COMMENTS
1744218747 is the least start of a run of 6 consecutive numbers. The next such run starts with 73840265847.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..500
EXAMPLE
906596 is a term since 906596 = 2^2 * 226649, 906596 + 1 = 906597 = 3^2 * 100733, 906596 + 2 = 906598 = 2 * 7^2 * 11 * 29^2, 906596 + 3 = 906599 = 71 * 113^2 and 906596 + 4 = 906600 = 2^3 * 3 * 5^2 * 1511 all have the same number of unitary and nonunitary prime divisors.
MATHEMATICA
q[n_] := n == 1 || Count[(e = FactorInteger[n][[;; , 2]]), 1] == Length[e]/2; v = q /@ Range[5]; seq = {}; Do[v = Append[Drop[v, 1], q[k]]; If[And @@ v, AppendTo[seq, k - 4]], {k, 6, 3*10^7}]; seq
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Sep 30 2021
STATUS
approved