This module implements some kinds of lists of numbers.
Usage:get_primes(N,Primes)
Computes the Nth first prime numbers in ascending order.
Usage:intlist(X)
X is a list of integers.
Usage:numlist(X)
X is a list of numbers.
Usage:sum_list(List,N)
N is the total sum of the elements of List.
Usage:sum_list(List,N0,N)
N is the total sum of the elements of List plus N0.
Usage:sum_list_of_lists(Lists,N)
N is the total sum of the elements of the lists of Lists.
Usage:sum_list_of_lists(Lists,N0,N)
N is the total sum of the elements of the lists of Lists plus N0.