0
votes
What’s your favorite implementation of producing the fibonacci sequence?
I came across this little beauty the other day:
function f($n)
{
$sqrt5 = pow(5, 0.5);
$gr = (1+$sqrt5)/2;
return floor(0.5+(pow($g, $n)/$sqrt5));
}
…
