0 out of 464 challenges solved
Write a Python function `sum_of_squares_of_even_numbers(n)` that takes an integer `n` as input and returns the sum of squares of the first `n` even natural numbers. #### Example Usage ```python [main.nopy] sum_of_squares_of_even_numbers(2) # Output: 20 sum_of_squares_of_even_numbers(3) # Output: 56 sum_of_squares_of_even_numbers(4) # Output: 120 ``` #### Constraints - The input `n` will be a non-negative integer. - If `n` is 0, the function should return 0.
def sum_of_squares_of_even_numbers(n): """ Calculate the sum of squares of the first n even natural numbers. Args: n (int): The number of even natural numbers to consider. Returns: int: The sum of squares of the first n even natural numbers. """ # Placeholder for the solution pass