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

A152311
Primes p such that the multiplicative order of 2 modulo p is (p-1)/11.
2
331, 1013, 4643, 12101, 12893, 16061, 17117, 23893, 25763, 25939, 28403, 30493, 32429, 32957, 34739, 36389, 38149, 39139, 42043, 44771, 45541, 46861, 53923, 57773, 59621, 60611, 81533, 85229, 87187, 89123, 92357, 96493, 100981, 105227
OFFSET
1,1
LINKS
MATHEMATICA
okQ[p_] := MultiplicativeOrder[2, p] == (p-1)/11;
Select[Prime[Range[20000]], okQ] (* Jean-François Alcover, Nov 23 2024 *)
PROG
(Magma) [ p: p in PrimesUpTo(105227) | r eq 1 and Order(R!2) eq q where q, r is Quotrem(p, 11) where R is ResidueClassRing(p) ];
(PARI) Vec(select(p->((p!=2) && (znorder(Mod(2, p)) == (p-1)/11)), primes(20000))) \\ Michel Marcus, Feb 09 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Klaus Brockhaus, Dec 02 2008
STATUS
approved