Write a Python function to find the list of words that are longer than ‘n’ from a given list of words.
Example 1:
Input: ['hello', 'world', 'python', 'is', 'awesome'], 5
Output: ['python', 'awesome']
Example 2:
Input: ['apple', 'banana', 'cherry', 'date', 'elderberry'], 6
Output: ['elderberry']