map length (tiers :: [[ Nat ]])  =  [1,1,1,1,1,1,1,1,1,1,1,1,...]

length (list :: [ Nat ])  =  Infinity

allUnique (list :: [ Nat ])  =  True

ratioRepetitions (list :: [ Nat ])  =  0 % 1

tiers :: [Nat]  =
  [ [0]
  , [1]
  , [2]
  , [3]
  , [4]
  , [5]
  , [6]
  , [7]
  , [8]
  , [9]
  , [10]
  , [11]
  , ...
  ]
