A376164 Maximum of the n-th maximal run of nonsquarefree numbers (increasing by 1 at a time).
4, 9, 12, 16, 18, 20, 25, 28, 32, 36, 40, 45, 50, 52, 54, 56, 60, 64, 68, 72, 76, 81, 84, 88, 90, 92, 96, 100, 104, 108, 112, 117, 121, 126, 128, 132, 136, 140, 144, 148, 150, 153, 156, 160, 162, 164, 169, 172, 176, 180, 184, 189, 192, 196, 198, 200, 204, 208
Offset: 1
Keywords
Examples
The maximal runs of nonsquarefree numbers begin: 4 8 9 12 16 18 20 24 25 27 28 32 36 40 44 45 48 49 50
Crossrefs
Programs
-
Mathematica
Max/@Split[Select[Range[100],!SquareFreeQ[#]&],#1+1==#2&]//Most