2

Primes of the form $\dfrac{(2^k-1)*10^m+2^{(k-1)}+10}{42}$, where $m$ is the number of decimal digits of $2^{k-1}-1$. With Pari I found that primes occur for $k=3,\, 6, 12, 36, 105, 156,336, 2286, 4272,$ $4427, 11979, 20076, 29343, 29988, 30405$. $\:$

The first thing I would ask is this: why there is only one $k=4427$ which is not a multiple of 3, whereas all the other $k$'s $(3, 6, 12, 36, 105, 156, 336, 2286, 4272, 11979, 20076, 29343, 29988, 30405)$ are congruent to $0\mod3$.$\:$ Is there any mathematical reason?$\:$

The second question is: could be $k$ be of the form $3s+1$, i mean is there a $k$ of the form $3s+1$ such that $\dfrac{(2^k-1)*10^m+2^{(k-1)}+10}{42}$ is prime? The question is related to this other question: A conjecture about numbers of the form $10^{m}(2^{k}−1)+2^{k-1}−1$, where $m$ is the number of decimal digits of $ 2^{k-1}$.

  • @Taneli Huuskonen@lulu is there some mathematical reason for that? –  Nov 15 '18 at 13:10
  • (PARI) ec(n)= fromdigits(concat(digits(2^n-1), digits(2^(n-1)-1)))

    for(j=2, 10^4, s=ec(j); if(Mod(s+11, 42)==0, if(ispseudoprime((s+11)/42)==1, print1(j, ", "))‌​))

    –  Nov 15 '18 at 13:21
  • @Especially Lime is there any particular mathematical reason why primes of this type occur more often when k is a multiple of 3? –  Nov 15 '18 at 14:10

1 Answers1

1

If 3|k then Mod(2^k - 1, 7) = 0 and Mod(2^(k-1) - 1, 7) = 3, so Mod(ec(k),7) = 3 for any m.

If 3 does not divide k, the fact that 10 is a primitive root (mod 7) comes into play. In each case, there will only be one residue class of Mod(m, 6) that makes Mod(ec(k),7) = 3.

If k == 1 (mod 3) then Mod(2^(k-1) - 1, 7) = 0 and Mod(2^k - 1, 7) = 1, so Mod(ec(k), 7) = Mod(10^m, 7). This is 3 when Mod(m, 6) = 1.

If k == 2 (mod 3) then we have Mod(ec(k), 7) = Mod(3*10^m + 1, 7), which is again 3 when Mod(m,6) = 1.

Of the 18 possible pairs (Mod(k,3), Mod(m, 6)) then, the 6 pairs with Mod(k,3) = 0 , the pair (Mod(k,3) = 1, Mod(m,6) = 1), and the pair (Mod(k,3) = 2, Mod(m,6) = 1) allow Mod(pw(k), 7) = 3.

For the remaining ten pairs, Mod(ec(k), 7) is not 3.

So, ec(k) + 4 is divisible by 7 about 6 times as often for 3|k as for k == 1 (mod 3), and about 6 times as often as for k == 2 (mod 3). A numerical check up to k = 10000 confirms this.