OFFSET
1,1
COMMENTS
Conjecture: There are no perfect squares in this sequence (in spite of all numbers being congruent to 0 or 1 mod 4).
If any perfect square occurred in this sequence then a septic trinomial x^7 + A*x^2 + B with two irreducible factors of degree 3 and 4 would exist.
This sequence is a subsequence of A079896.
MATHEMATICA
aa = {}; Do[Do[kk = p^6 - 4 p^4 q + 4 p^2 q^2 + 4 q^3; If[(kk > 0) && (p q != 0), AppendTo[aa, kk]], {p, 1, 200}], {q, -200, 200}]; Take[Union[aa], 100]
CROSSREFS
KEYWORD
nonn
AUTHOR
Artur Jasinski, May 30 2010
STATUS
approved