OFFSET
0,3
COMMENTS
If a(29) is not 0, then it is > 10^12. - Lucas A. Brown, Oct 25 2024
LINKS
Lucas A. Brown, Python program.
EXAMPLE
The fourth differences of A013929 begin: -6, -2, 5, 0, -7, 9, -6, 6, -7, ... so a(4) = 4.
MATHEMATICA
nn=10000;
u=Table[Differences[Select[Range[nn], !SquareFreeQ[#]&], k], {k, 2, 16}];
mnrm[s_]:=If[Min@@s==1, mnrm[DeleteCases[s-1, 0]]+1, 0];
m=Table[Position[u[[k]], 0][[1, 1]], {k, mnrm[Union[First/@Position[u, 0]]]}]
CROSSREFS
KEYWORD
nonn,more,new
AUTHOR
Gus Wiseman, Oct 19 2024
EXTENSIONS
a(17)-a(28) from Lucas A. Brown, Oct 25 2024
STATUS
approved