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.

A383411 Primes p such that gcd(ord_p(3), ord_p(5)) = 1.

Original entry on oeis.org

2, 13, 313, 51169, 797161, 3482851, 5096867, 12207031, 162410641, 368385827, 1001523179, 4902814883, 104849105869, 131772143257, 572027881891
Offset: 1

Views

Author

Li GAN, Apr 26 2025

Keywords

Comments

'ord_p' here means the multiplicative order modulo p, not to be confused with the p-adic order that is also often denoted by ord_p.

Crossrefs

Programs

  • Mathematica
    Select[Range[10000], PrimeQ[#] && CoprimeQ[MultiplicativeOrder[3, #], MultiplicativeOrder[5, #]] &]
  • PARI
    forprime(p=13,oo,if(1==gcd(znorder(Mod(5,p)),znorder(Mod(3,p))),print1(p,", "))); \\ Joerg Arndt, Apr 26 2025

Extensions

a(13)-a(15) from Bill McEachen, May 11 2025