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.

A036145 3^n mod 137.

Original entry on oeis.org

1, 3, 9, 27, 81, 106, 44, 132, 122, 92, 2, 6, 18, 54, 25, 75, 88, 127, 107, 47, 4, 12, 36, 108, 50, 13, 39, 117, 77, 94, 8, 24, 72, 79, 100, 26, 78, 97, 17, 51, 16, 48, 7, 21, 63, 52, 19, 57, 34, 102, 32, 96, 14, 42, 126
Offset: 0

Views

Author

Keywords

References

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

Programs

  • Maple
    [ seq(primroot(ithprime(i))^j mod ithprime(i),j=0..100) ];
  • PARI
    a(n)=lift(Mod(3,137)^n) \\ Charles R Greathouse IV, Mar 22 2016