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

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.
 
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...
Fermat's Last Theorem has long been one of the most famous mathematical problems, and is now one of the most famous theorems. It simply states that the equation $$ a^n+b^n=c^n $$ has no solutions with positive integers if ##n>2.## It was named after Pierre de Fermat (1607-1665). The problem itself stems from the book Arithmetica by Diophantus of Alexandria. It gained popularity because Fermat noted in his copy "Cubum autem in duos cubos, aut quadratoquadratum in duos quadratoquadratos, et...
I'm interested to know whether the equation $$1 = 2 - \frac{1}{2 - \frac{1}{2 - \cdots}}$$ is true or not. It can be shown easily that if the continued fraction converges, it cannot converge to anything else than 1. It seems that if the continued fraction converges, the convergence is very slow. The apparent slowness of the convergence makes it difficult to estimate the presence of true convergence numerically. At the moment I don't know whether this converges or not.
Back
Top