OFFSET
1,1
COMMENTS
There are no runs of 4 consecutive numbers below 10^10.
It is conjectured that there are no runs of 3 consecutive numbers that are powerful (A001694), but if they do exist, their starts are contained in this sequence.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..280
EXAMPLE
48 is a term since 48, 49 and 50 are all in A328014.
MATHEMATICA
f[p_, e_] := If[e==1, p, 1]; s[n_] := Times @@ (f @@@ FactorInteger[n]); q[n_] := s[n]^2 < n; v = q /@ Range[3]; seq = {}; Do[v = Append[Drop[v, 1], q[k]]; If[And @@ v, AppendTo[seq, k - 2]], {k, 4, 10^6}]; seq
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Oct 01 2021
STATUS
approved