Skip to content

Instantly share code, notes, and snippets.

@aquilax
Created December 19, 2011 13:22
Show Gist options
  • Save aquilax/1497209 to your computer and use it in GitHub Desktop.
Save aquilax/1497209 to your computer and use it in GitHub Desktop.
Геометрична прогресия
<?php
$K = 4;
function set($K){
$prev = 0;
for ($i = 0; $i < $K; $i++){
$prev = $prev * 2 + 1;
}
return $prev;
}
echo set($K).PHP_EOL;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment