Ask Your Question
0

[x^14+x^i+x^j with (i,j) in (13,13) where j<i]

asked 2013-12-08 22:46:56 +0200

kpasax gravatar image

updated 2015-01-13 21:16:30 +0200

FrédéricC gravatar image

How can I do it?

image description

to get: [x^14, x^14 + 1, x^14 + x + 1, x^14 + x^2 + x, x^14 + x^2 + 1,...

edit retag flag offensive close merge delete

1 Answer

Sort by » oldest newest most voted
1

answered 2013-12-08 23:35:25 +0200

calc314 gravatar image

Try this:

[x^14 + x^i + x^j for i in range(1,14) for j in range(1,14) if j<i]
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2013-12-08 22:46:56 +0200

Seen: 342 times

Last updated: Dec 08 '13