A084165 Primes which are 1 mod m, where m is the index of the prime in sequence A002313 (Real primes with corresponding complex primes). The index m can be found in A084166 Primes which are -1 mod m can be found in sequence A084163.
5, 13, 17, 37, 89, 97, 181, 2689, 2969, 4621, 7457, 8081, 8161, 36709, 62701, 169489, 169709, 169753, 282809, 770101, 5763577, 9491101, 9491281, 9495121, 42544261, 115195501, 189689041, 189689653, 312315373, 312316409, 2294883817
Offset: 1
Keywords
Examples
89 is the 11th prime in sequence A002313, 11*8 = 88, so 89 = 1 mod 11
References
- Handbook of First Complex Prime Numbers, Part1 + 2 Ervand Kogbetliantz and Alice Krikorian, Gordon and Breach, 1971
Programs
-
Mathematica
Module[{nn=112*10^6,pr,len},pr=Select[Prime[Range[nn]],MemberQ[ {1,2},Mod[ #,4]]&];len=Length[pr];Select[Thread[{pr,Range[len]}],Mod[ #[[1]],#[[2]]] == 1&]][[All,1]] (* Harvey P. Dale, Aug 13 2020 *)
Comments