Is it true that polynomials of the form :
$ f_n= x^n+x^{n-1}+\cdots+x^{k+1}+ax^k+ax^{k-1}+\cdots+a$
where $\gcd(n+1,k+1)=1$ , $ a\in \mathbb{Z^{+}}$ , $a$ is odd number , $a>1$, and $a_1\neq 1$
are irreducible over the ring of integers $\mathbb{Z}$?
Eisenstein's criterion , Cohn's criterion , and Perron's criterion cannot be applied to the polynomials of this form.
Example :
The polynomial $x^4+x^3+x^2+3x+3$ is irreducible over the integers but none of the criteria above can be applied on this polynomial.
EDIT :
Note that general form for $f_n$ is : $f_n=a_nx^n+a_{n-1}x^{n-1}+\cdots+a_1x+a_0$ , so condition $a_1 \neq 1$ is equivalent to the condition $k \geq 1$ . Also polynomial can be rewritten into form :
$$f_n=\frac{x^{n+1}+(a-1)x^{k+1}-a}{x-1}$$
An excellent question!
EDIT: I misread the question where it stated that $a_1 \neq 1$. In the case where $a_1 = 1$ there are infinitely many counter-examples for every odd degree $\ge 3$.
Here is the code I used. It is far far from perfect, so feel free to try it out and improve on it.
What the code does is the following. It first creates a list of all the relevant polynomials of degree up to and including 50. To do this, the code just runs over all possibilities and checks which ones satisfy the gcd requirement. Then the code picks the non-zero entries (because we don't want any Null's).
Then the code creates a table (new) where each entry is the pair $f_n$ and whether the factoring fails (so SameQ would give the answer "True"). In the end, the for-loop picks the polynomials that do factor and factors them.
The outside for-loop goes over the odd $a$'s up to 101.