Number beginning n consecutive numbers that are not cube-free.
8, 80, 1375, 22624, 18035622
1
No other terms less than 10^9.
T. D. Noe, Plot of 5 terms
Example: 80 = 2^4*5 and 81 = 3^4 are the first two consecutive numbers that are not cube-free.
(Mma) s = Select[Range[10^7], Max[Transpose[FactorInteger[#]][[2]]] > 2 &]; d = Differences[s]; t = {8}; n = 0; While[n++; i = Position[Partition[d, n, 1], Table[1, {n}], 1, 1]; i != {}, i = Flatten[i]; AppendTo[t, s[[i[[1]]]]]]; t
Cf. A045882 (n consecutive numbers not squarefree), A046099 (numbers not cube-free), S000164.
nonn,hard,more
T. D. Noe, Jul 23 2014