------
## 最终结论
```python
def fourth_Power_Sum(n):
    return sum(i**4 for i in range(1, n + 1))
```