vote up 8 vote down star
6

Generate the Fibonacci sequence in the fewest amount of characters possible. Any language is OK, except for one that you define with one operator, f, which prints the Fibonacci numbers.

Starting point: 25 characters in Haskell:

f=0:1:zipWith(+)f(tail f)
flag
this is not a homeworkhelp system – Alexander Morland Oct 24 '08 at 9:51
3  
Wow, this is a homework assignment? Cool class. – Chris Young Oct 24 '08 at 9:52
This should be a community wiki. – mdec Oct 24 '08 at 9:53
18  
I can't think of a single course where you'd start with 25 characters of Haskell and be asked to reduce it in any language you choose. – Claudiu Oct 24 '08 at 14:42
2  
Half the people who've commented so far have apparently never seen any other code golf question and really don't "get it". Try clicking the code-golf tag and see what we're all talking about. – Mike Daniels Sep 8 at 23:04
show 5 more comments

29 Answers

vote up 16 vote down check

13 chars of Golfscript:

2,~{..p@+.}do
link|flag
That's the value of using the right tool for the right problem. Abd then... is the problem really relevant? – rshimoda Oct 24 '08 at 13:47
2  
You wanna talk about "right tool"? See the winning entry for stackoverflow.com/questions/62188 :-) – Chris Jester-Young Oct 24 '08 at 19:35
vote up 7 vote down

22 characters with dc:

1[pdd5**v1++2/lxx]dsxx

Invoke with either:

dc -e'1[pdd5**v1++2/lxx]dsxx'

Or:

echo '1[pdd5**v1++2/lxx]dsxx' | dc

Note: not my work, poached from perlmonks.

link|flag
does not work here :( the code on perlmonks does though – knittl Sep 9 at 15:02
vote up 26 vote down

18 characters of English..

"Fibonacci Sequence"

ok, I fail. :)

link|flag
You could easily remove 5 characters - "fibonacci seq".. – dbr Oct 24 '08 at 12:59
@dbr: or remove 11 characters - "fib seq" – Lucas Jones Jan 3 at 15:31
1  
wow, 190 rep, out of 201. – Malfist Feb 12 at 5:20
vote up 5 vote down

For the record:

  • Lua (66 chars): function f(n)if n<2 then return n else return f(n-1)+f(n-2)end end
  • JavaScript (41 chars): function f(n){return n<2?n:f(n-1)+f(n-2)}
  • Java (41 chars): int f(int n){return n<2?n:f(n-1)+f(n-2);}

I am not much adept of super concise languages... :-P

Chris is right, I just took the simple, recursive algorithm. Actually, the linear one is even shorter in Lua (thanks to multiple assignment)! JavaScript isn't so lucky and Java is worse, having to declare vars...

  • Lua (60 chars): function f(n)a=1;b=0;for i=1,n do a,b=b,a+b end return b end
  • JavaScript (60 chars): function f(n){a=1;b=i=0;for(;i++<n;){x=a+b;a=b;b=x}return b}
  • Java (71 chars): int f(int n){int a=1,b=0,i=0;for(;i++<n;){int x=a+b;a=b;b=x;}return b;}

I would write Lua's code with local a,b=1,0 but it is longer, so let's pollute _G! ;-) Idem for JS.

For completeness, here are the terminal recursive versions. Lua's one, using tail call, is as fast as the linear one (but 69 chars, it is the longest!) - need to call them with three params, n,1,0.

  • Lua (69 char, longer!): function f(n,a,b)if n<1 then return b else return f(n-1,b,a+b)end end
  • JavaScript (44 chars): function f(n,a,b){return n<1?b:f(n-1,b,a+b)}
  • Java (52 chars): int f(int n,int a,int b){return n<1?b:f(n-1,b,a+b);}
link|flag
I bet you my Golfscript implementation is faster than any of yours, for large N. Not because Golfscript is fast (it's quite slow, in fact), but because my solution doesn't do recursion. :-P – Chris Jester-Young Oct 24 '08 at 12:44
You are right, and it is even shorter for Lua! Java[Script]'s recursive versions are "better" for the challenge of conciseness... – PhiLho Oct 24 '08 at 13:14
vote up 5 vote down

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)
link|flag
Your iterative way is not very suitable for generating the Fibonacci's sequence. See stackoverflow.com/questions/232861/… – J.F. Sebastian Oct 30 '08 at 12:46
It's not iterative but analytic – Dario Oct 10 at 19:56
vote up 11 vote down

Perl 6 - 22 characters

sub f{1,1...{$^a+$^b}}

link|flag
vote up 0 vote down

Not the shortest, but the fastest at the time of posting. :-)

float f(float n) {
    return (pow(1+sqrt(5.0))/2.0),n) - pow(1+sqrt(5.0))/2.0),n)/sqrt(n));
}
link|flag
It does not work. – Andrea Ambu Oct 24 '08 at 15:57
I think he means to fix the parentheses and have the second be 1 - sqrt(5.0). This is the fastest for a given n, but it is slower for generating a sequence, and also it won't work for numbers with more than a pretty small amount of digits. – Claudiu Oct 24 '08 at 16:12
Two typos. Sorry, this should work: (pow((1+sqrt(5.0)))/2.0),n) - pow((1-sqrt(5.0)))/2.0),n)/sqrt(n)); – mstrobl Oct 24 '08 at 16:14
Ack, sorry Claudiu. Did not read your answer before posting. Claudiu is right, although it's wrong that it is slower for generating a sequence. For a sequence of n it's O(n). Fibonacci's recursion is much higher than that, unless you do not recalculate the results previously calculated. – mstrobl Oct 24 '08 at 16:17
If your intent is to generate a sequence, you would not need to recalculate any results -- you'd be saving them, in the sequence. – ephemient Oct 24 '08 at 18:11
show 1 more comment
vote up 5 vote down

J, 27 characters for a non-recursive function:

f=:3 :'{:}.@(,+/)^:y(0 1x)'

+/ sums over a list.
(,+/) appends the sum of a list to its tail.
}.@(,+/) sums a list, appends an element to its tail, and drops the first element.
}.@(,+/)^:y iterates the above function y times.
}.@(,+/)^:y(0 1x) applies the above function to the list (0,1) (the x makes it an integer).
{:}.@(,+/)^:y(0 1x) takes the last element of the output list of the above.
f=:3 :'{:}.@(,+/)^:y(0 1x)' defines f to be a function on one variable y.

link|flag
how does "f=:3 :'______'" define a function to be of one variable y? Where does the :3 come from? ahh! (head exploding). – Claudiu Oct 24 '08 at 21:53
Heh, J is quite interesting, isn't it? All functions are unary (taking implicit 'y' argument) or binary (taking implicit 'x' an 'y') or both (well, in J terms, all verbs can be used as monads or dyads). "3 :" introduces the definition of a monadic verb. – ephemient Oct 24 '08 at 22:52
vote up 1 vote down

33 characters in C:

F(n){return n<2?n:F(n-1)+F(n-2);}
link|flag
vote up 1 vote down

Generate the Fibonacci sequence. sequence SEQUENCE!

link|flag
vote up 3 vote down

Ruby (30 characters):

def f(n)n<2?n:f(n-1)+f(n-2)end
link|flag
vote up 1 vote down

@Andrea Ambu

An iterative pythonic fibonacci()'s version should look something like that:

def fibonacci(a=0, b=1):
    while True:
        yield b
        a, b = b, a+b
link|flag
vote up 2 vote down

Windows XP (and later versions) batch script. This batch function when given a single argument - amount, generates amount+1 Fibonacci numbers and returns them as a string (BATCH doesn't really have sets) in variable %r% (369 characters, or 347 characters - if we remove indentation):

:f
    set i=0
    set r=1
    set n=1
    set f=0
    :l
    	if %n% GTR %~1 goto e
    	set f=%f% %r%
    	set /A s=%i%+%r%
    	set i=%r%
    	set r=%s%
    	set /A n+=1
    	goto l
    :e
    set r=%f%
    exit /B 0

And here's the complete script, to see it in action (just copy-past it into a CMD or BAT file and run it):

@echo off
call :ff 0
call :ff 1
call :ff 2
call :ff 3
call :ff 5
call :ff 10
call :ff 15
call :ff 20
exit /B 0

:ff
    call :f "%~1"
    echo %~1: %r%
    exit /B 0

:f
    set i=0
    set r=1
    set n=1
    set f=0
    :l
    	if %n% GTR %~1 goto e
    	set f=%f% %r%
    	set /A s=%i%+%r%
    	set i=%r%
    	set r=%s%
    	set /A n+=1
    	goto l
    :e
    set r=%f%
    exit /B 0
link|flag
vote up 0 vote down

Delphi Prism (Delphi for .net)

f:func<int32,int32>:=n->iif(n>1,f(n-1)+f(n-2),n)

49 chars

link|flag
vote up 0 vote down

The previous Ruby example won't work w/o either semicolons or newlines, so it's actually 32 chars. Here's the first example to actually output the sequence, not just return the value of a specified index.

Ruby:
53 chars, including newlines:

def f(n);n<2?1:f(n-1)+f(n-2);end
0.upto 20 {|n|p f n}

or if you want function that outputs a usable data structure, 71 chars:

def f(n);n<2?1:f(n-1)+f(n-2);end
def s(n);(0..n).to_a.map {|n| f(n)};end

or accepting command-line args, 70 chars:

def f(n);n<2?1:f(n-1)+f(n-2);end
p (0..$*[0].to_i).to_a.map {|n| f(n)}
link|flag
vote up 2 vote down

Language: dc, Char count: 20

Shorter dc solution.

dc -e'1df[dsa+plarlbx]dsbx'
link|flag
What kind of language is this :rolleyes: – Ikke Oct 10 at 19:59
vote up 2 vote down

C#

I'm seeing a lot of answers that don't actually generate the sequence, but instead give you only the fibonacci number at position *n using recursion, which when looped to generate the sequence gets increasingly slower at higher values of n.

using System;
static void Main()
{
  var x = Math.Sqrt(5);
  for (int n = 0; n < 10; n++)
    Console.WriteLine((Math.Pow((1 + x) / 2, n) - Math.Pow((1 - x) / 2, n)) / p) ;
}
link|flag
vote up 4 vote down

Here's my best using scheme, in 45 characters:

(let f((a 0)(b 1))(printf"~a,"b)(f b(+ a b)))
link|flag
vote up 0 vote down

PHP - 47 chars

function f($i){return $i<2?$i:f($i-1)+f($i-2);}
link|flag
vote up 4 vote down

Language: C++ Compiler Errors
Characters: 205

#define t template <int n> struct 
#define u template <> struct f
t g { int v[0]; };
t f { enum { v = f<n-1>::v + f<n-2>::v }; g<v> x;};
u<1> { enum { v = 1 }; };
u<0> { enum { v = 0 }; };
int main() { f<10> x; }
link|flag
vote up 0 vote down

I don't really see how the answers with n<2?n:f(n-1)+f(n-2) would actually work, yet there are several. Anyway,

PHP: 83 chars

function f($t){echo $o=0;$n=1;for($i=0;$i<$t;++$i){echo ",$n";$d=$o;$o=$n;$n+=$d;}}

or 67 chars when not as a function, size increases per number of terms

echo $o=0;$n=1;for($i=0;$i<9;++$i){echo ",$n";$d=$o;$o=$n;$n+=$d;}
link|flag
vote up 2 vote down

F#:

(0,1)|>Seq.unfold(fun(a,b)->Some(a,(b,a+b)))

44 Chars

link|flag
vote up 2 vote down
let rec f l a b =function 0->a::l|1->b::l|n->f (a::l) b (a+b) (n-1) in f [] 1 1;;

80 characters, but truly generates the sequence, in linear time.

link|flag
bizarre ... – Claudiu Jun 29 at 16:58
vote up 0 vote down

Euphoria: 44 characters

object f=1&1 loop do f&=f[$]+f[$-1]until 0

Keeps on generating until RAM or doubles run out.

link|flag
vote up 1 vote down

Lua - 49 chars

function f(n)return n<2 and n or f(n-1)+f(n-2)end
link|flag
vote up 2 vote down

x86 (C-callable) realmode, 14 bytes.
Input is  n  on stack, returns  Fn  in AX.

59 31 C0 E3 08 89 C3 40 93 01 D8 E2 FB C3
link|flag
vote up 0 vote down

Lucid

f = 1 fby 1 fby f + prev f;

27 characters, including the spaces.

link|flag
vote up 0 vote down

Rexx:

arg n;a=1;b=1;do i=1 to n;say a b;a=a+b;b=a+b;end

link|flag
vote up 1 vote down

Befunge-93

31 chars

Will output an infinite list of the Fibonacci numbers, from 0 upwards, separated by tabs (could be reduced to 29 chars by deleting 9, in the first row, at the expense of no whitespace between numbers).

Unfortunately, all the Befunge-93 interpreters I've tried seem to overflow after 65k, so the output is only correct until and including 46368 (which is F24).

#v::1p1>01g:.\:01p+9,#
 >     ^

Confirmed to work (with caveat above) with the Befunge-93 interpreter in Javascript and the Visual Befunge Applet Full.

I'm proud to say this is a completely original work (i.e. I did not copy this code from anyone), and it's much shorter than the Befunge solution currently on Rosetta Code.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.