Question 1062750
This is a list of every second prime beginning with 2.
:
The index into the list of primes would be (2n-1) where n = 1, 2, ......k
:
You would have to set k to some integer, for example 100
:
There are plenty of examples of c or java code on the internet to generate prime numbers, store them in a matrix and then use the index (2n-1) into the matrix to print out the every second prime number list
: