OFFSET
1,1
LINKS
A. Weimholt, Table of n, a(n) for n=1,...,10000
EXAMPLE
3 is disorderly because there exists no K > 2=tau(3), such that {1,3} == {1,2} mod K.
MATHEMATICA
orderlyQ[n_] := (For[dd = Divisors[n]; tau = Length[dd]; k = 3, k <= Max[tau + 4, Last[dd] - 2], k++, If[Union[Mod[dd, k]] == Range[tau], Return[True]]]; False); Select[Range[120], !orderlyQ[#]&] (* Jean-François Alcover, Nov 03 2016 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Andrew Weimholt, Nov 03 2009
STATUS
approved