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.

A036158 3^n mod 199.

Original entry on oeis.org

1, 3, 9, 27, 81, 44, 132, 197, 193, 181, 145, 37, 111, 134, 4, 12, 36, 108, 125, 176, 130, 191, 175, 127, 182, 148, 46, 138, 16, 48, 144, 34, 102, 107, 122, 167, 103, 110, 131, 194, 184, 154, 64, 192, 178, 136
Offset: 0

Views

Author

Keywords

Comments

Periodic, with period = 198. - Harvey P. Dale, Jul 20 2016

References

  • I. M. Vinogradov, Elements of Number Theory, pp. 220 ff.

Programs

  • Maple
    [ seq(primroot(ithprime(i))^j mod ithprime(i),j=0..100) ];
  • Mathematica
    PowerMod[3,Range[0,50],199] (* Harvey P. Dale, Jul 20 2016 *)
  • PARI
    a(n)=lift(Mod(3,199)^n) \\ Charles R Greathouse IV, Mar 22 2016