1
11
121
1331
14641
15101051
1615201561
172135352171
18285670562881
193684126126843691
1104512021025221012045101
1115516533046246233016555111
1126622049579292479249522066121
11378286715128717161716128771528678131
11491364100120023003343230032002100136491141
11510545513653003500564356435500530031365455105151
116120560182043688008114401287011440800843681820560120161
Source:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 
<html>
  <head>
    <title>Amok.dk - Tralala...</title>
    <link rel="stylesheet" type="text/css" href="style.css">
  </head>
  <body>
<?php 
  
//Højden på trekanten.
  
$rows = (isSet($_GET['r']) && is_numeric($_GET['r'])) ? $_GET['r'] : "17" ;

  
//Pascals Trekant Algoritme.
  
for($i  0$i $rows$i++)
    for(
$j 0$j <= $i$j++)
      if(
$j == $i || $j == 0)
        
$arr[$i][$j] = '1';
      else
        
$arr[$i][$j] = $arr[$i-1][$j-1]+$arr[$i-1][$j];

?>
<center>
<?php
  
//Udskriver trekanten.
  
$len floor(count($arr[$i])/2);
  for(
$i 0$i <= count($arr); $i++){
    echo 
"<div style='text-align: center; width: 100%;'>";
    for(
$k 0$k <= count($arr[$i])-1$k++)
      echo 
"<span style='width: 40px; height: 40px; border: 1px solid #000; display: inline-block;'>".$arr[$i][$k]."</span>";
    echo 
"</div>";
  }
?>
</center>

<div style='font: bold 14px Verdana;'>Source:</div>
<?php
  
echo highlight_file(__FILE__true);
?>
</body>
</html>