What is the Distribution of Primes in Relation to Important Numbers?

  • Context: Graduate 
  • Thread starter Thread starter greeniguana00
  • Start date Start date
  • Tags Tags
    Distribution Primes
Click For Summary
SUMMARY

This discussion focuses on a program that identifies non-prime numbers and "important numbers," defined as those occurring six or more times in a multiplication grid generated by the program. The program, written in C++, utilizes an array to track occurrences of products and outputs a list of important numbers. The author notes a correlation between these important numbers and their proximity to prime numbers, suggesting that certain patterns may yield numbers that are consistently one less or one greater than a prime. The discussion also references concepts such as abundant numbers and statistical analysis to explore the relationship between these sets of numbers.

PREREQUISITES
  • C++ programming (basic syntax and file handling)
  • Understanding of prime numbers and their properties
  • Familiarity with statistical analysis techniques
  • Knowledge of number theory concepts such as abundant numbers
NEXT STEPS
  • Explore C++ file I/O operations for data handling
  • Research prime number distribution and patterns
  • Learn about statistical tests for validating numerical theories
  • Investigate the properties of abundant, super-abundant, and highly abundant numbers
USEFUL FOR

Mathematicians, computer scientists, and data analysts interested in number theory, prime distribution, and statistical validation of numerical patterns.

greeniguana00
Messages
52
Reaction score
0
I made this simple program to list all non-primes (ignore the first row and column of the output) and list what I call "important numbers". I have attached an output if you don't want to bother running and compiling the program.

Code:
#include <iostream>
#include <fstream>
using namespace std;

int main ()
{
	ofstream output;
	output.open ("output.txt");
	int i;
	int j;
	int n;
	cout<<"Size? ";
	cin>>n;
	int repeat[n*n];
	for (j=1;j<=n;j++) {
		for (i=1;i<=n;i++) {
			output<<i*j<<"\t";
			repeat[i*j]++;
		}
		output<<endl;
	}
	output<<endl<<endl<<endl<<"IMPORTANT NUMBERS:"<<endl;
	for (i=1;i<=(n*n);i++) {
		if (repeat[i]>=6) {
			output<<i<<endl;
		}
	}
	output.close();
	return 0;
}

Anyway, taking a look at the attached text file, I noticed that the "important numbers" (those which occurred 6 or more times in the grid) were more likely than a random number to have a prime before it or after it (at least for small numbers). After a Google search, I found out that a similar definition to my "important numbers" is given to "abundant numbers" and "super-abundant numbers" and "highly abundant numbers" -- that is they are determined by a high number of factors (for example, 12 = 1*12 = 2*6 = 3*4), just in a slightly different way.

I then began to wonder, is there a set of numbers that can be generated using a simple pattern such that every number in that set is one less than or one greater than a prime? Is there another set such that every prime is either one less than or one greater than a number in that set? Well, I haven't gotten far from this point.

I have found the set of numbers defined as: n(x) = 2((x^2)-x); where x is an integer greater than or equal to two, is more likely to have primes before or after its members, but that's about it.
 

Attachments

Mathematics news on Phys.org
Unless it is much more likely then you aren't going to get any rewards.
 
John Creighto said:
Unless it is much more likely then you aren't going to get any rewards.

I know. It's more likely than random, but that's about it.
 
greeniguana00 said:
I know. It's more likely than random, but that's about it.

Try and estimate the likelihood of it bing a prime as well as give your confidence intervals. See what kind of statistical tests you can do to validate or invalidate your theory.
 
If a particular number has a lot of factors, then none of them can divide the previous number.

This effect is only really relevant for "small" numbers. When you start looking at large numbers, there are just to many 'candidate' prime factors.
 
Yeah, I neglected the "at least for small numbers" in my second post.
 

Similar threads

  • · Replies 8 ·
Replies
8
Views
1K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 8 ·
Replies
8
Views
2K
  • · Replies 24 ·
Replies
24
Views
3K
  • · Replies 19 ·
Replies
19
Views
3K
  • · Replies 0 ·
Replies
0
Views
3K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 16 ·
Replies
16
Views
3K