show/hide this revision's text 2 added the iterative way :)

Python, 38 chars.

f=lambda n:n if n<2 else f(n-1)+f(n-2)

Not so short but the most readable in my opinion :P

EDIT: Here is the iterative way (if someone needs to see it in python :-)

f=lambda n:((1+5**.5)**n-(1-5**.5)**n)/(2**n*5**.5)
show/hide this revision's text 1

Python, 38 chars.

f=lambda n:n if n<2 else f(n-1)+f(n-2)

Not so short but the most readable in my opinion :P