This program uses recursive functions to:
1. Calculate the standard deviation of an array of values by calculating the mean, summing the squared differences from the mean, and taking the square root.
2. Find the factorial of a number by multiplying it by the factorial of the previous number down to 1.
3. Find the sum of odd numbers between a range by recursively adding each odd number.