Есть много способов достичь того, что вы хотите, один из них использует Intstream#iterate
:
public static List<Integer> getFives(int numberOfElements, int incrementNum) {
return IntStream.iterate(incrementNum, i -> i+incrementNum)
.limit(numberOfElements)
.boxed()
.collect(Collectors.toList());
}