Die Legende von den Reiskörnern auf dem Schachbrett mit PHP berechnen

Datei rice.php mit folgendem Inhalt anlegen:

<?php

// Reiskörner auf dem Schachbrett
// Rice grains on the chessboard

function rice($rounds){ 

 $grains1 = 1; 

 $field = 1; 
 while ($field < $rounds){
  echo (str_pad($field, 2, '0', STR_PAD_LEFT) . ": " . $grains1 . "<br>");
  $grains2 = $grains1 * 2; 
  $grains1 = $grains2;
  $field = $field + 1; 
  } 
} 

$rounds = 65; 
rice($rounds); 
?>

Beispiel: rice.php