What Is the Last Prime Quadruplet in the Sequence i, i+2, i+6, i+8?

In summary, the conversation discusses finding prime quadruplets that differ by 2, 6, and 8 using a sieve algorithm. The conversation also mentions using an array of 1s and 0s to check for prime numbers and suggests using an online compiler if there are issues with the current compiler.
  • #1
ƒ(x) → ∞
25
0

Homework Statement



I am trying to find prime numbers that are i,i+2,i+6,i+8 apart. Could someone tell me the last set that this gives?

Homework Equations



-

The Attempt at a Solution



program sieve_t
implicit none
integer*1 s(1000000), offset (10), sequence
integer i, j, n

n=0
sequence=4

do i=1, 10
offset(i)=0
enddo

offset(1)=2
offset(2)=4
offset(3)=2

do i=1, 1000000
s(i) = 1
enddo

do i=2, 1000000
if (s(i).eq.1) then
do j=2, (1000000/i)
s(i*j)=0
enddo
endif
enddo

do i=2, 1000000

if (s(i).eq.1) then
do j=1,sequence-1
if (s(i+offset(j)).ne.1) goto 10
enddo
n=n+1
write(*,*) n, i,i+2,i+6,i+8
endif
10 continue
enddo


end
 
Physics news on Phys.org
  • #2
I'm not sure what you are asking. What does primes that are "i apart" mean? Are you asking for primes that differ by 0, 2, 6, and 8? Primes that differ by 0 aren't very interesting, since they would necessarily be equal. There are lots of primes that differ by 2, the first few pairs of which are 3 and 5, 5 and 7, and 11 and 13.

Please clarify what you're trying to do.
 
  • #3
Sorry Mark44.

I am looking for groups of primes. I am basically looking for prime quadruplets that differ by 2 and 6 and 8.

For example {5, 7, 11, 13}
 
  • #4
OK, now I understand. One approach would be to first go through your array of 1,000,000 numbers looking for primes, using the sieve approach as you have been doing. After you have that array of 1s and 0s, then iterate through it looking for a 1. When you find a 1, check whether there is a 1 at position i + 2, i + 6, and i + 8. If there are 1s in all those positions, you have found a prime quadruplet.
 
  • #5
Could you compile it?
 
  • #6
Not sure I understand your question. I don't have a Fortran compiler. Did you try my suggestion and get compiler errors? Please clarify what you're asking.
 
  • #7
I think that my compiler has a bug in it, because it cannot even compile a correct code.

Are there any online compilers?
 

What is FORTRAN?

FORTRAN (short for Formula Translation) is a high-level programming language used for scientific and numerical computing. It was developed in the 1950s and is still widely used today.

What is a beginner FORTRAN problem?

A beginner FORTRAN problem is a programming exercise or task designed to introduce someone to the basics of coding in FORTRAN. These problems often involve simple mathematical calculations or basic input/output operations.

Why is FORTRAN still used?

FORTRAN is still used because it is a highly efficient and reliable language for scientific and numerical computing. It is also backward compatible, meaning older code written in FORTRAN can still be used and updated without major changes.

Do I need any prior programming experience to learn FORTRAN?

While prior programming experience can be helpful, it is not necessary to learn FORTRAN. However, a strong understanding of mathematical concepts and problem-solving skills are important for learning and using FORTRAN effectively.

Where can I find resources for learning FORTRAN?

There are many resources available for learning FORTRAN, including online tutorials, textbooks, and programming forums. Your local library or university may also offer classes or workshops on FORTRAN programming.

Similar threads

  • Engineering and Comp Sci Homework Help
Replies
8
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
32
Views
3K
  • Engineering and Comp Sci Homework Help
Replies
7
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
4
Views
3K
  • Programming and Computer Science
Replies
12
Views
1K
  • Engineering and Comp Sci Homework Help
Replies
1
Views
2K
  • Programming and Computer Science
Replies
2
Views
2K
  • Programming and Computer Science
Replies
2
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
21
Views
2K
  • Engineering and Comp Sci Homework Help
Replies
33
Views
3K
Back
Top