The Lucas numbers are built the same way as the Fibonacci numbers but start from different values: L(1) = 1, L(2) = 3, and every later term is the sum of the two terms immediately before it.
Assume you are given an integer n that is at least 1. Write the function lucas(n) that returns the nth Lucas number. Write it recursively.
lucas(1) -> 1
lucas(2) -> 3
lucas(3) -> 4
lucas(6) -> 18