Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lloricode/7dd8c4f757d155af85c9b5f0caf32afe to your computer and use it in GitHub Desktop.
Save lloricode/7dd8c4f757d155af85c9b5f0caf32afe to your computer and use it in GitHub Desktop.
Generate the first 12 Mersenne Number Generator
<?php
$count = 12;
for($i=1; $i < $count; $i++){
print( pow(2,$i) - 1) . ' | ';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment