------
## 最终结论
```python
def square_Sum(n):
    even_numbers = [2 * i for i in range(1, n + 1)]
    return sum(x ** 2 for x in even_numbers)
```