Before trying the problem "note your opinion as to whether the observed pattern is known to continue, known not to continue, or not known at all."
Lets factor polynomials of the form x^n-1. Starting with 1 the following list can be generated:
n=1: (x-1)
n=2: (x-1)*(x+1)
n=3: (x-1)*(x^2+x+1)
n=4: (x-1)*(x+1)*(x^2+1)
n=5: (x-1)*(x^4+x^3+x^2+x+1)
n=6: (x-1)*(x+1)*(x^2+x+1)*(x^2-x+1)
One thing to notice is that each line has exactly one polynomial factor not seen earlier in the list:
n=1: x-1
n=2: x+1
n=3: x^2+x+1
n=4: x^2+1
n=5: x^4+x^3+x^2+x+1
n=6: x^2-x+1
Does each new factorization always produce exactly one new polynomial factor?
Looking more closely you may see that all the coefficients are -1, 0, or 1. Does this continue to be the case for all factors?