from itertools import count, islice

n = 3
qtd = 5

multiplos = list(islice(count(n, n), qtd))
print(multiplos)