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

A062174
a(n) = 3^(n-1) mod n.
3
0, 1, 0, 3, 1, 3, 1, 3, 0, 3, 1, 3, 1, 3, 9, 11, 1, 9, 1, 7, 9, 3, 1, 3, 6, 3, 0, 27, 1, 3, 1, 11, 9, 3, 4, 27, 1, 3, 9, 27, 1, 33, 1, 27, 36, 3, 1, 27, 43, 33, 9, 27, 1, 27, 4, 3, 9, 3, 1, 27, 1, 3, 9, 43, 16, 45, 1, 27, 9, 13, 1, 27, 1, 3, 69, 27, 25, 9, 1, 27, 0, 3, 1, 75, 81, 3, 9, 75, 1, 63
OFFSET
1,4
MATHEMATICA
Table[PowerMod[3, n-1, n], {n, 90}] (* Harvey P. Dale, Oct 03 2012 *)
PROG
(PARI) { for (n=1, 1000, write("b062174.txt", n, " ", 3^(n - 1)%n) ) } \\ Harry J. Smith, Aug 02 2009
CROSSREFS
Cf. A062172.
Sequence in context: A227920 A138291 A201681 * A154754 A102368 A374146
KEYWORD
nonn
AUTHOR
Henry Bottomley, Jun 12 2001
STATUS
approved