IntStream から逆順リストを作る

List<Integer> years =
IntStream.rangeClosed(2013, Calendar.getInstance().get(Calendar.YEAR))
     .boxed()
     .sorted(Comparator.reverseOrder())
     .collect(Collectors.toList());