cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A070675 Smallest m in range 2..n-1 such that m^10 == 1 mod n, or 1 if no such number exists.

This page as a plain text file.
%I A070675 #13 Nov 10 2015 03:24:00
%S A070675 1,1,2,3,4,5,6,3,8,9,2,5,12,13,4,7,16,17,18,9,8,3,22,5,4,25,26,13,28,
%T A070675 11,2,15,2,33,6,17,36,37,14,9,4,13,42,3,19,45,46,7,48,9,16,25,52,53,4,
%U A070675 13,20,57,58,11,3,15,8,31,14,5,66,33,22,29,5,17,72,73
%N A070675 Smallest m in range 2..n-1 such that m^10 == 1 mod n, or 1 if no such number exists.
%H A070675 Alois P. Heinz, <a href="/A070675/b070675.txt">Table of n, a(n) for n = 1..10000</a>
%p A070675 a:= proc(n) local m;
%p A070675       for m from 2 to n-1 do
%p A070675         if m &^ 10 mod n = 1 then return m fi
%p A070675       od; 1
%p A070675     end:
%p A070675 seq(a(n), n=1..100);  # _Alois P. Heinz_, Jun 29 2014
%t A070675 a[n_] := Module[{r = 1}, Do[If[PowerMod[m, 10, n] == 1, r = m; Break[]], {m, 2, n-1}]; r]; Array[a, 100] (* _Jean-François Alcover_, Nov 10 2015 *)
%o A070675 (PARI) a(n) = {for (m=2, n-1, if (lift(Mod(m, n)^10) == 1, return (m));); return (1);} \\ _Michel Marcus_, Jun 29 2014
%Y A070675 Cf. A070667.
%K A070675 nonn
%O A070675 1,3
%A A070675 _N. J. A. Sloane_, May 08 2002