Why Do Different Prime Number Variations Occur in Equal Frequencies?

  • Context: Undergrad 
  • Thread starter Thread starter Bob3141592
  • Start date Start date
  • Tags Tags
    Primes
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 4K views
Bob3141592
Messages
236
Reaction score
2
As a programming exercise I wrote a program to generate primes. First I generated a billion of them (the one billionth prime is 22,801,763,489). My program also scans through these numbers for Twin primes (adjacent primes that differ by two), cousin primes (adjacent primes that differ by four) and sexy primes (primes that differ by six and don't have to be adjacent). There are 58,047,180 twin primes among the first billion, and 58,040,263 cousin primes in that same range. Almost the same number. I supposed that that count would hold no matter what the difference between the primes was, so I was surprised to see 116,076,313 sexy primes, almost exactly twice the previous counts. I extended the program to look for other differences, and found 58,044,163 primes that differ by 8, very similar to the count of twins and cousins. But then there were 77,387,551 primes that differ by 10, and 116,089,533 primes that differ by 12, very similar to the sexy count.

I'll be looking for primes with other differences, but the program takes its time.

Is there a reason for this behavior, or is it just statistical variations?
 
Mathematics news on Phys.org
Bob3141592 said:
There are 58,047,180 twin primes among the first billion, and 58,040,263 cousin primes in that same range.

This is already a known conjecture. But it has not yet been proven that it always holds. It follows from the first Hardy-Littlewood conjecture: http://mathworld.wolfram.com/k-TupleConjecture.html
The rest of your numbers also follow from it.
 
Last edited:
Bob3141592 said:
As a programming exercise I wrote a program to generate primes. First I generated a billion of them (the one billionth prime is 22,801,763,489). My program also scans through these numbers for Twin primes (adjacent primes that differ by two), cousin primes (adjacent primes that differ by four) and sexy primes (primes that differ by six and don't have to be adjacent). There are 58,047,180 twin primes among the first billion, and 58,040,263 cousin primes in that same range. Almost the same number. I supposed that that count would hold no matter what the difference between the primes was
Why would you suppose that? It would seem reasonable to me that, since the larger [itex]x_1[/itex] is the more primes there are to be divisors of numbers, the larger [itex]x_1[/itex] is, the fewer primes there would be between [itex]x_1[/itex] and [itex]x_2[/itex] for a fixed [itex]x_2- x_1[/itex].

, so I was surprised to see 116,076,313 sexy primes, almost exactly twice the previous counts. I extended the program to look for other differences, and found 58,044,163 primes that differ by 8, very similar to the count of twins and cousins. But then there were 77,387,551 primes that differ by 10, and 116,089,533 primes that differ by 12, very similar to the sexy count.

I'll be looking for primes with other differences, but the program takes its time.

Is there a reason for this behavior, or is it just statistical variations?