login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A270827
a(n) is the smallest k such that k^8 = 16 (mod 2*n-1).
0
1, 1, 1, 3, 4, 3, 4, 1, 3, 6, 4, 5, 6, 5, 11, 8, 8, 3, 5, 4, 8, 16, 4, 7, 10, 5, 22, 3, 13, 23, 10, 4, 4, 20, 5, 12, 12, 8, 3, 9, 22, 9, 3, 11, 25, 4, 8, 6, 14, 14, 9, 38, 4, 31, 32, 5, 14, 18, 4, 3, 19, 8, 56, 16, 16, 28, 25, 22, 31, 50, 7, 19, 11, 10, 43, 46, 5
OFFSET
1,4
COMMENTS
Motivated by Crandall & Pomerance, Exercise 2.1 p. 108: "Prove that 16 is, modulo any odd number, an eighth power".
REFERENCES
R. Crandall and C. Pomerance, Prime Numbers: A Computational Perspective, Springer, NY, 2001; see Exercise 2.1 p. 108.
EXAMPLE
a(9)=3 since for odd number 2*9-1=17, 3^8 = 16 (mod 17).
MATHEMATICA
Table[SelectFirst[Range@ 1000, Mod[#^8, 2 n - 1] == Mod[16, 2 n - 1] &], {n, 77}] (* Michael De Vlieger, Mar 24 2016, Version 10 *)
PROG
(PARI) a(n) = { my(m = 2*n-1, k = 1); while(Mod(k, m)^8 != 16, k++); k; }
CROSSREFS
Sequence in context: A094237 A016654 A090673 * A293072 A120447 A083021
KEYWORD
nonn
AUTHOR
Michel Marcus, Mar 23 2016
STATUS
approved