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

A036157
a(n) = 2^n mod 197.
3
1, 2, 4, 8, 16, 32, 64, 128, 59, 118, 39, 78, 156, 115, 33, 66, 132, 67, 134, 71, 142, 87, 174, 151, 105, 13, 26, 52, 104, 11, 22, 44, 88, 176, 155, 113, 29, 58, 116, 35, 70, 140, 83, 166, 135, 73, 146, 95, 190, 183
OFFSET
0,2
REFERENCES
I. M. Vinogradov, Elements of Number Theory, pp. 220 ff.
LINKS
FORMULA
a(n) = a(n-196). - Muniru A Asiru, Jan 27 2019
MAPLE
[ seq(primroot(ithprime(i))^j mod ithprime(i), j=0..100) ];
MATHEMATICA
Table[PowerMod[2, n, 197], {n, 0, 50}] (* Harvey P. Dale, Jan 11 2011 *)
PROG
(PARI) a(n)=lift(Mod(2, 197)^n) \\ Charles R Greathouse IV, Mar 22 2016
(GAP) a:=List([0..70], n->PowerMod(2, n, 197));; Print(a); # Muniru A Asiru, Jan 26 2019
CROSSREFS
Sequence in context: A016025 A036161 A036159 * A036154 A036153 A036152
KEYWORD
nonn,easy
STATUS
approved