Group Abstract Group Abstract

Message Boards Message Boards

0
|
7K Views
|
3 Replies
|
1 Total Like
View groups...
Share
Share this post:

Product just for the even numbers?

Posted 9 years ago

How to compute a product just for the even numbers? The multiplication must be computed for i being 0, 2, 4, 6, 8, 10, so on until 60, 62 and 64 and not for all the i from 0 to 64 as in example... How the input should be look like? I tried something as " where i is even", "even(i)" but no success...

Here is example input in W|A:

product (2^i+1), i=0 to 64

enter image description here

POSTED BY: Stefan P
3 Replies
Posted 9 years ago

This can't be done using WolframAlpha's engine?

POSTED BY: Stefan P

In Mathematica:

Product[1 + 2^i, {i, 0, 64, 2}]
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard