OFFSET
2,1
COMMENTS
x^n - x - 1 is irreducible for all n (see link to Selmer, Theorem 1), and it appears that the Galois group is always the full symmetric group S_n.
For n > 3, it appears that all roots of x^n - x - 1 are distinct modulo a(n). For n = 2 and n = 3, there is a repeated root modulo a(n). The smallest primes modulo which x^2 - x - 1 and x^3 - x - 1 split with no repeated roots are 11 and 59 respectively.
LINKS
Ernst S. Selmer, On the irreducibility of certain trinomials, Mathematica Scandinavica 4 (1956), 287-302.
EXAMPLE
a(4) = 83 because x^4 - x - 1 has an irreducible factor of degree > 1 modulo all primes less than 83, but splits as (x + 3)(x + 7)(x + 14)(x + 59) modulo 83.
MATHEMATICA
a[n_] := Module[{i},
For[i = 1, True, i++,
If[Total[Last /@ Rest[FactorList[x^n - x - 1, Modulus -> Prime[i]]]] == n,
Return[Prime[i]];
]
]
];
a /@ Range[2, 8]
CROSSREFS
KEYWORD
nonn,hard,more
AUTHOR
Ben Whitmore, Oct 30 2024
STATUS
approved