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”).

Log base 3 (n) mod 233.
1

%I #11 Mar 20 2020 10:02:08

%S 0,72,1,144,165,73,222,216,2,5,197,145,158,62,166,56,103,74,136,77,

%T 223,37,112,217,98,230,3,134,132,6,182,128,198,175,155,146,8,208,159,

%U 149,85,63,25,109,167,184,139,57,212,170,104,70,195,75,130,206,137

%N Log base 3 (n) mod 233.

%D I. M. Vinogradov, Elements of Number Theory, p. 220ff.

%H Georg Fischer, <a href="/A036206/b036206.txt">Table of n, a(n) for n = 1..232</a>

%p with (numtheory): seq(mlog(n, 3, 233), n=1..232); # _Georg Fischer_, Mar 10 2020

%t a[1]=0; a[n_]:=MultiplicativeOrder[3, 233, {n}]; Array[a, 232] (* _Vincenzo Librandi_, Mar 20 2020 *)

%K nonn,fini,full

%O 1,2

%A _N. J. A. Sloane_