A373199 Least k such that the k-th maximal run of nonsquarefree numbers has length n. Position of first appearance of n in A053797.
1, 2, 13, 68, 241, 6278, 61921, 311759, 2530539
Offset: 1
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 52 54 56 60 63 64 The a(n)-th rows are: 4 8 9 48 49 50 242 243 244 245 844 845 846 847 848 For example, (48, 49, 50) is the first maximal run of 3 nonsquarefree numbers, so a(3) = 13.
Links
Crossrefs
Programs
-
Mathematica
seq=Length/@Split[Select[Range[10000],!SquareFreeQ[#]&],#1+1==#2&]; spna[y_]:=Max@@Select[Range[Length[y]],SubsetQ[y,Range[#]]&]; Table[Position[seq,i][[1,1]],{i,spna[seq]}]
Comments