Table of primes
Hello,
I'm trying to create a table (or matrix, what comes first) with the first rank is the primes_range from 2 to 29 and the first column with primes_range from 2 to 29 too.
Then, I want to add i[0] + j[0] = element 4 using the values above.
The reason for that is that I want to create a table of even elements based on Goldbach conjecture that says that an even is the sum of two equal (or different) primes:
4 = 2 + 2 6 = 3 + 3 8 = 3 + 5
The problem is that an even number can be written in several ways, example:
24 = 5 + 19 24 = 7 + 17 24 = 11 + 13 and so on..
The number 200 = 3 + 197 . So, my problem is to 'remember' in a for/loop the number 3. When I'm close to the even 200 the number variable that holds the first prime is far away from 3.
So, I think the solution maybe can be a combination or a value table or a matrix.
Thank you in advance.
P.S.: This is not a homework.
What is the question?
I want to create a matrix of prime elements starting, say, from 2 up to 197 OR a matrix of elements starting from 2 up to 200 where the elements that are primes have another shape or color. If you don't understand I can DRAW it to you. Thank you.
It is more or less clear what you want to achieve. You just didn't state an explicit question. Is it about how to create a [matrix](http://www.sagemath.org/doc/reference/matrices/sage/matrix/constructor.html)? Is it about how to generate lists of [prime](http://combinat.sagemath.org/doc/reference/misc/sage/rings/arith.html#sage.rings.arith.primes) numbers? What do you mean by shape or color? I'm starting to think a python dict might suit your purposes better.
You can think about it as a group too. But, forget. I can learn it alone without your funny help.
There is no place for insult here. Moreover with somebody who tries to help and knows Sage much better than you ! As fidelbc said before : there is no question in your post and your aim is unclear.