The double factorial, denoted by $n!!$, returns the product of all of the odd integers that are less than or equal to $n$. For example, $7!! = 7 * 5 *3 * 1$. What is the units digit of $1!! + 3!! + 5!! + 7!! + ... + 49!!$?

1 answer

well, you know that n!! ends in 5 for all n >= 5
There are (49+1)/2 = 25 terms in your sum. The last 23 of them end in 5.
So, what do you think?
Similar Questions
  1. def factorial(n):if n==1: else: return n* factorial(n-1) print("the factorial of ", 7, "is", factorial (7)) how could the
    1. answers icon 1 answer
  2. Consider the recursive function for the calculation of a factorial.def factorial(n): if n == 1: return n else: return n *
    1. answers icon 2 answers
  3. Consider the recursive function for the calculation of a factorial.def factorial(n): if n == 1: return n else: return n *
    1. answers icon 1 answer
    1. answers icon 1 answer
more similar questions