Assume you are given a positive integer n. Write the function first_n_squares(n) that returns a new list containing the squares of the integers from 1 up to and including n, in increasing order.
first_n_squares(4) -> [1, 4, 9, 16]
first_n_squares(1) -> [1]