The number of nonnegative integer solutions of $x_1 + x_2 + \cdots + x_n = 8$ is the coefficient of $t^8$ in the following generating function [JDL]
$$\dfrac{1}{(1-t)^n}$$
Using SymPy:
>>> from sympy import *
>>> t = Symbol('t')
>>> f1 = 1 / (1-t)**5
>>> f2 = 1 / (1-t)**4
>>> f3 = 1 / (1-t)**3
>>> f1.series(t,0,9)
1 + 5*t + 15*t**2 + 35*t**3 + 70*t**4 + 126*t**5 + 210*t**6 + 330*t**7 + 495*t**8 + O(t**9)
>>> f2.series(t,0,9)
1 + 4*t + 10*t**2 + 20*t**3 + 35*t**4 + 56*t**5 + 84*t**6 + 120*t**7 + 165*t**8 + O(t**9)
>>> f3.series(t,0,9)
1 + 3*t + 6*t**2 + 10*t**3 + 15*t**4 + 21*t**5 + 28*t**6 + 36*t**7 + 45*t**8 + O(t**9)
Hence, if, say, $n=5$, there should be $495$ solutions. Brute-forcing in Haskell:
Prelude> let tuples = [ (x1,x2,x3,x4,x5) | x1 <- [0,1..8], x2 <- [0,1..8], x3 <- [0,1..8], x4 <- [0,1..8], x5 <- [0,1..8] ]
Prelude> filter (\(x1,x2,x3,x4,x5)->(x1+x2+x3+x4+x5==8)) tuples
[(0,0,0,0,8),(0,0,0,1,7),(0,0,0,2,6),(0,0,0,3,5),(0,0,0,4,4),(0,0,0,5,3),(0,0,0,6,2),(0,0,0,7,1),(0,0,0,8,0),(0,0,1,0,7),(0,0,1,1,6),(0,0,1,2,5),(0,0,1,3,4),(0,0,1,4,3),(0,0,1,5,2),(0,0,1,6,1),(0,0,1,7,0),(0,0,2,0,6),(0,0,2,1,5),(0,0,2,2,4),(0,0,2,3,3),(0,0,2,4,2),(0,0,2,5,1),(0,0,2,6,0),(0,0,3,0,5),(0,0,3,1,4),(0,0,3,2,3),(0,0,3,3,2),(0,0,3,4,1),(0,0,3,5,0),(0,0,4,0,4),(0,0,4,1,3),(0,0,4,2,2),(0,0,4,3,1),(0,0,4,4,0),(0,0,5,0,3),(0,0,5,1,2),(0,0,5,2,1),(0,0,5,3,0),(0,0,6,0,2),(0,0,6,1,1),(0,0,6,2,0),(0,0,7,0,1),(0,0,7,1,0),(0,0,8,0,0),(0,1,0,0,7),(0,1,0,1,6),(0,1,0,2,5),(0,1,0,3,4),(0,1,0,4,3),(0,1,0,5,2),(0,1,0,6,1),(0,1,0,7,0),(0,1,1,0,6),(0,1,1,1,5),(0,1,1,2,4),(0,1,1,3,3),(0,1,1,4,2),(0,1,1,5,1),(0,1,1,6,0),(0,1,2,0,5),(0,1,2,1,4),(0,1,2,2,3),(0,1,2,3,2),(0,1,2,4,1),(0,1,2,5,0),(0,1,3,0,4),(0,1,3,1,3),(0,1,3,2,2),(0,1,3,3,1),(0,1,3,4,0),(0,1,4,0,3),(0,1,4,1,2),(0,1,4,2,1),(0,1,4,3,0),(0,1,5,0,2),(0,1,5,1,1),(0,1,5,2,0),(0,1,6,0,1),(0,1,6,1,0),(0,1,7,0,0),(0,2,0,0,6),(0,2,0,1,5),(0,2,0,2,4),(0,2,0,3,3),(0,2,0,4,2),(0,2,0,5,1),(0,2,0,6,0),(0,2,1,0,5),(0,2,1,1,4),(0,2,1,2,3),(0,2,1,3,2),(0,2,1,4,1),(0,2,1,5,0),(0,2,2,0,4),(0,2,2,1,3),(0,2,2,2,2),(0,2,2,3,1),(0,2,2,4,0),(0,2,3,0,3),(0,2,3,1,2),(0,2,3,2,1),(0,2,3,3,0),(0,2,4,0,2),(0,2,4,1,1),(0,2,4,2,0),(0,2,5,0,1),(0,2,5,1,0),(0,2,6,0,0),(0,3,0,0,5),(0,3,0,1,4),(0,3,0,2,3),(0,3,0,3,2),(0,3,0,4,1),(0,3,0,5,0),(0,3,1,0,4),(0,3,1,1,3),(0,3,1,2,2),(0,3,1,3,1),(0,3,1,4,0),(0,3,2,0,3),(0,3,2,1,2),(0,3,2,2,1),(0,3,2,3,0),(0,3,3,0,2),(0,3,3,1,1),(0,3,3,2,0),(0,3,4,0,1),(0,3,4,1,0),(0,3,5,0,0),(0,4,0,0,4),(0,4,0,1,3),(0,4,0,2,2),(0,4,0,3,1),(0,4,0,4,0),(0,4,1,0,3),(0,4,1,1,2),(0,4,1,2,1),(0,4,1,3,0),(0,4,2,0,2),(0,4,2,1,1),(0,4,2,2,0),(0,4,3,0,1),(0,4,3,1,0),(0,4,4,0,0),(0,5,0,0,3),(0,5,0,1,2),(0,5,0,2,1),(0,5,0,3,0),(0,5,1,0,2),(0,5,1,1,1),(0,5,1,2,0),(0,5,2,0,1),(0,5,2,1,0),(0,5,3,0,0),(0,6,0,0,2),(0,6,0,1,1),(0,6,0,2,0),(0,6,1,0,1),(0,6,1,1,0),(0,6,2,0,0),(0,7,0,0,1),(0,7,0,1,0),(0,7,1,0,0),(0,8,0,0,0),(1,0,0,0,7),(1,0,0,1,6),(1,0,0,2,5),(1,0,0,3,4),(1,0,0,4,3),(1,0,0,5,2),(1,0,0,6,1),(1,0,0,7,0),(1,0,1,0,6),(1,0,1,1,5),(1,0,1,2,4),(1,0,1,3,3),(1,0,1,4,2),(1,0,1,5,1),(1,0,1,6,0),(1,0,2,0,5),(1,0,2,1,4),(1,0,2,2,3),(1,0,2,3,2),(1,0,2,4,1),(1,0,2,5,0),(1,0,3,0,4),(1,0,3,1,3),(1,0,3,2,2),(1,0,3,3,1),(1,0,3,4,0),(1,0,4,0,3),(1,0,4,1,2),(1,0,4,2,1),(1,0,4,3,0),(1,0,5,0,2),(1,0,5,1,1),(1,0,5,2,0),(1,0,6,0,1),(1,0,6,1,0),(1,0,7,0,0),(1,1,0,0,6),(1,1,0,1,5),(1,1,0,2,4),(1,1,0,3,3),(1,1,0,4,2),(1,1,0,5,1),(1,1,0,6,0),(1,1,1,0,5),(1,1,1,1,4),(1,1,1,2,3),(1,1,1,3,2),(1,1,1,4,1),(1,1,1,5,0),(1,1,2,0,4),(1,1,2,1,3),(1,1,2,2,2),(1,1,2,3,1),(1,1,2,4,0),(1,1,3,0,3),(1,1,3,1,2),(1,1,3,2,1),(1,1,3,3,0),(1,1,4,0,2),(1,1,4,1,1),(1,1,4,2,0),(1,1,5,0,1),(1,1,5,1,0),(1,1,6,0,0),(1,2,0,0,5),(1,2,0,1,4),(1,2,0,2,3),(1,2,0,3,2),(1,2,0,4,1),(1,2,0,5,0),(1,2,1,0,4),(1,2,1,1,3),(1,2,1,2,2),(1,2,1,3,1),(1,2,1,4,0),(1,2,2,0,3),(1,2,2,1,2),(1,2,2,2,1),(1,2,2,3,0),(1,2,3,0,2),(1,2,3,1,1),(1,2,3,2,0),(1,2,4,0,1),(1,2,4,1,0),(1,2,5,0,0),(1,3,0,0,4),(1,3,0,1,3),(1,3,0,2,2),(1,3,0,3,1),(1,3,0,4,0),(1,3,1,0,3),(1,3,1,1,2),(1,3,1,2,1),(1,3,1,3,0),(1,3,2,0,2),(1,3,2,1,1),(1,3,2,2,0),(1,3,3,0,1),(1,3,3,1,0),(1,3,4,0,0),(1,4,0,0,3),(1,4,0,1,2),(1,4,0,2,1),(1,4,0,3,0),(1,4,1,0,2),(1,4,1,1,1),(1,4,1,2,0),(1,4,2,0,1),(1,4,2,1,0),(1,4,3,0,0),(1,5,0,0,2),(1,5,0,1,1),(1,5,0,2,0),(1,5,1,0,1),(1,5,1,1,0),(1,5,2,0,0),(1,6,0,0,1),(1,6,0,1,0),(1,6,1,0,0),(1,7,0,0,0),(2,0,0,0,6),(2,0,0,1,5),(2,0,0,2,4),(2,0,0,3,3),(2,0,0,4,2),(2,0,0,5,1),(2,0,0,6,0),(2,0,1,0,5),(2,0,1,1,4),(2,0,1,2,3),(2,0,1,3,2),(2,0,1,4,1),(2,0,1,5,0),(2,0,2,0,4),(2,0,2,1,3),(2,0,2,2,2),(2,0,2,3,1),(2,0,2,4,0),(2,0,3,0,3),(2,0,3,1,2),(2,0,3,2,1),(2,0,3,3,0),(2,0,4,0,2),(2,0,4,1,1),(2,0,4,2,0),(2,0,5,0,1),(2,0,5,1,0),(2,0,6,0,0),(2,1,0,0,5),(2,1,0,1,4),(2,1,0,2,3),(2,1,0,3,2),(2,1,0,4,1),(2,1,0,5,0),(2,1,1,0,4),(2,1,1,1,3),(2,1,1,2,2),(2,1,1,3,1),(2,1,1,4,0),(2,1,2,0,3),(2,1,2,1,2),(2,1,2,2,1),(2,1,2,3,0),(2,1,3,0,2),(2,1,3,1,1),(2,1,3,2,0),(2,1,4,0,1),(2,1,4,1,0),(2,1,5,0,0),(2,2,0,0,4),(2,2,0,1,3),(2,2,0,2,2),(2,2,0,3,1),(2,2,0,4,0),(2,2,1,0,3),(2,2,1,1,2),(2,2,1,2,1),(2,2,1,3,0),(2,2,2,0,2),(2,2,2,1,1),(2,2,2,2,0),(2,2,3,0,1),(2,2,3,1,0),(2,2,4,0,0),(2,3,0,0,3),(2,3,0,1,2),(2,3,0,2,1),(2,3,0,3,0),(2,3,1,0,2),(2,3,1,1,1),(2,3,1,2,0),(2,3,2,0,1),(2,3,2,1,0),(2,3,3,0,0),(2,4,0,0,2),(2,4,0,1,1),(2,4,0,2,0),(2,4,1,0,1),(2,4,1,1,0),(2,4,2,0,0),(2,5,0,0,1),(2,5,0,1,0),(2,5,1,0,0),(2,6,0,0,0),(3,0,0,0,5),(3,0,0,1,4),(3,0,0,2,3),(3,0,0,3,2),(3,0,0,4,1),(3,0,0,5,0),(3,0,1,0,4),(3,0,1,1,3),(3,0,1,2,2),(3,0,1,3,1),(3,0,1,4,0),(3,0,2,0,3),(3,0,2,1,2),(3,0,2,2,1),(3,0,2,3,0),(3,0,3,0,2),(3,0,3,1,1),(3,0,3,2,0),(3,0,4,0,1),(3,0,4,1,0),(3,0,5,0,0),(3,1,0,0,4),(3,1,0,1,3),(3,1,0,2,2),(3,1,0,3,1),(3,1,0,4,0),(3,1,1,0,3),(3,1,1,1,2),(3,1,1,2,1),(3,1,1,3,0),(3,1,2,0,2),(3,1,2,1,1),(3,1,2,2,0),(3,1,3,0,1),(3,1,3,1,0),(3,1,4,0,0),(3,2,0,0,3),(3,2,0,1,2),(3,2,0,2,1),(3,2,0,3,0),(3,2,1,0,2),(3,2,1,1,1),(3,2,1,2,0),(3,2,2,0,1),(3,2,2,1,0),(3,2,3,0,0),(3,3,0,0,2),(3,3,0,1,1),(3,3,0,2,0),(3,3,1,0,1),(3,3,1,1,0),(3,3,2,0,0),(3,4,0,0,1),(3,4,0,1,0),(3,4,1,0,0),(3,5,0,0,0),(4,0,0,0,4),(4,0,0,1,3),(4,0,0,2,2),(4,0,0,3,1),(4,0,0,4,0),(4,0,1,0,3),(4,0,1,1,2),(4,0,1,2,1),(4,0,1,3,0),(4,0,2,0,2),(4,0,2,1,1),(4,0,2,2,0),(4,0,3,0,1),(4,0,3,1,0),(4,0,4,0,0),(4,1,0,0,3),(4,1,0,1,2),(4,1,0,2,1),(4,1,0,3,0),(4,1,1,0,2),(4,1,1,1,1),(4,1,1,2,0),(4,1,2,0,1),(4,1,2,1,0),(4,1,3,0,0),(4,2,0,0,2),(4,2,0,1,1),(4,2,0,2,0),(4,2,1,0,1),(4,2,1,1,0),(4,2,2,0,0),(4,3,0,0,1),(4,3,0,1,0),(4,3,1,0,0),(4,4,0,0,0),(5,0,0,0,3),(5,0,0,1,2),(5,0,0,2,1),(5,0,0,3,0),(5,0,1,0,2),(5,0,1,1,1),(5,0,1,2,0),(5,0,2,0,1),(5,0,2,1,0),(5,0,3,0,0),(5,1,0,0,2),(5,1,0,1,1),(5,1,0,2,0),(5,1,1,0,1),(5,1,1,1,0),(5,1,2,0,0),(5,2,0,0,1),(5,2,0,1,0),(5,2,1,0,0),(5,3,0,0,0),(6,0,0,0,2),(6,0,0,1,1),(6,0,0,2,0),(6,0,1,0,1),(6,0,1,1,0),(6,0,2,0,0),(6,1,0,0,1),(6,1,0,1,0),(6,1,1,0,0),(6,2,0,0,0),(7,0,0,0,1),(7,0,0,1,0),(7,0,1,0,0),(7,1,0,0,0),(8,0,0,0,0)]
Let us count the number of nonnegative integer solutions to see if there are $495$ of them:
Prelude> tuples' = filter (\(x1,x2,x3,x4,x5)->(x1+x2+x3+x4+x5==8)) tuples
Prelude> length tuples'
495
[JDL] Jesús A. De Loera, The Many Aspects of Counting Lattice Points in Polytopes.