Skip to content

Home

Arithmetic progression

Generates a list of numbers in the arithmetic progression starting with the given positive integer and up to the specified limit.

def arithmetic_progression(n, lim):
  return list(range(n, lim + 1, n))

arithmetic_progression(5, 25) # [5, 10, 15, 20, 25]

More like this

Start typing a keyphrase to see matching snippets.