A250203 Numbers n such that the Phi_n(2) is the product of exactly two primes and is divisible by 2n+1.
11, 20, 23, 35, 39, 48, 83, 96, 131, 231, 303, 375, 384, 519, 771, 848, 1400, 1983, 2280, 2640, 2715, 3359, 6144, 7736, 7911, 11079, 13224, 16664, 24263, 36168, 130439, 406583
Offset: 1
Examples
Phi_11(2) = 23 * 89 and 23 = 2 * 11 + 1, so 11 is in this sequence. Phi_35(2) = 71 * 122921 and 71 = 2 * 35 + 1, so 35 is in this sequence. Phi_48(2) = 97 * 673 and 97 = 2 * 48 + 1, so 48 is in this sequence.
Links
- Eric Chen, Gord Palameta, Factorization of Phi_n(2) for n up to 1280
- Will Edgington, Factorization of completely factored Phi_n(2) [from Internet Archive Wayback Machine]
- Henri Lifchitz and Renaud Lifchitz, PRP records. Search for (2^a-1)/b
- Samuel Wagstaff, The Cunningham project
Crossrefs
Programs
-
Mathematica
Select[Range[10000], PrimeQ[2*# + 1] && PowerMod[2, #, 2*# + 1] == 1 && PrimeQ[Cyclotomic[#, 2]/(2*#+1)] &]
-
PARI
isok(n) = if (((x=polcyclo(n, 2)) % (2*n+1) == 0) && (omega(x) == 2), print1(n, ", ")); \\ Michel Marcus, Mar 13 2015
Comments