The Fibonacci sequence is the sequence defined by F(0) = 0, F(1) = 1, F(n + 2) = F(n) + F(n + 1). The first few terms are 0, 1, 1, 2, 3, 5, 8.

learn more… | top users | synonyms

1
vote
3answers
33 views

Dynamic binding using dictionaries in python?

I know how to do Fibonacci series recursively, that's pretty simple: def F(n): if n == 1 or n == 2: return 1 else: return k * F(n-2) + F(n - 1) I do know however that this is extremely ...
2
votes
2answers
64 views

Android Fibonacci Benchmark / Deep recursion

I'm running a Fibonacci benchmark on my Android phone and I'm getting some strange results. As I don't really care if the UI-thread is locked or not, I'm running the code below inside the UI-thread in ...
4
votes
3answers
81 views

Parallelize Fibonacci sequence generator

I'm learning about parallelization and in one exercise I'm given a couple of algorithms that I should improve in performance. One of them is a Fibonacci sequence generator: array[0] = 0; array[1] = ...
0
votes
2answers
36 views

Scrum - Do you burn down to the next Fibonacci number? [closed]

For our next Scrum project, we're going to change from estimating in hours to points for our stories and tasks (using the Fibonacci sequence). When you burn down the points, do you burn down to the ...
0
votes
2answers
31 views

IndexOutOfBoundsException with Timer in Java

I have a problem which hopefully requires a simple obvious solution I can't seem figure out. Ok, so I'm playing around with Fibonacci Sequence: I want to prompt the user to enter an Integer. Then it ...
0
votes
1answer
91 views

Fibonacci sequence in assembly language

Need some help understanding this more or less. We are just getting into loops and OFFSET operands and would appreciate some help. So here are my instructions: Write an assembly language program ...
-2
votes
5answers
117 views

Algorithm function for fibonacci series [closed]

I'm not looking necessarily for an answer, but I am looking for what this question is asking of. Found this question studying for an interview but not sure what they're asking? Write function ...
1
vote
2answers
115 views

Create infinite list with fibonacci numbers

I make my next homework =) My task is to create infinite list with fibonacci numbers [0,1,1,2,3,5,8..] I can use any function from Prelude. My try: fibs2 :: [Integer] fibs2 = reverse $ foldr f [1,0] ...
-4
votes
4answers
75 views

Fibonacci Series in C - The series of numbers up to a given number [closed]

Could anyone possibly provide feedback on my code given below? I have done the Fibonacci series multiple times in other languages, but for some odd reason, it won't print the correct series when I ...
0
votes
3answers
44 views

Formula to Generate List of Specific Numbers

I am relatively new to programing and I'm trying to generate a list of numbers using this formula. If "i" is the index of the list, the formula would be list[i] = list[i-2] + list[i-3]. The first few ...
2
votes
4answers
115 views

Recursive Fibonacci Sequence print out the list

I have the follow code for a recursive Fibonacci Sequence if (term < 2){ System.out.print("1 "); return 1; } int results = fibonacci(term - 1) + fibonacci(term - ...
0
votes
1answer
39 views

fibonacci implementation in prolog

I'm trying to make my own implementation of the fibonacci sequence. This is what I have: fibo2(N, F) :- fibo2(0, 1, 0, N, F). fibo2(N-F, F, N-1, N, F). fibo2(P, S, C, N, F) :- C < N, ...
0
votes
2answers
99 views

Printing fibonacci series in recursion

I am trying to print Fibonacci series using recursion and my code is not ending the recursion . Can you tell me if i missed something.I think the second recursion is going into infinite loop and i am ...
1
vote
2answers
58 views

How large does a graph need to be to trigger the worst-case complexity of a Fibonacci heap?

I've been trying to trigger the worst-case complexity of a Fibonacci heap by using it with Dijkstra's algorithm but apparently with no luck. I have a second implementation of Dijkstra's using a ...
0
votes
1answer
39 views

Fibonacci Sequence ,binary search

I am trying to solve the following problem: F is an infinite sequence of integers that satisfies to Fibonacci condition F(i + 2) = F(i + 1) + F(i) for any integer i. Write a program, which calculates ...
2
votes
5answers
124 views

What's wrong with my Fibonacci sequence generator?

I'm trying to solve Problem #25 on Project Euler. Here's what I've got so far: def fibonacci(length): fibs = [0,1] while length > len(fibs): fibs.append(fibs[-1] + fibs[-2]) ...
-1
votes
4answers
89 views

Fibonacci Riddle almost right in need of a quick fix and an easy solve

Help I have a puzzle that needs solved! I made a Fibonacci series but I forgot to include the 0 Who can help me solve this riddle? If the input is five in the sequence the output should be 0,1,1,2,3 ...
0
votes
1answer
136 views

Fibonacci sequence in haskell returning all the values [duplicate]

I need help for my assignment using haskell which return a list up to the nth number in the Fibonacci sequence. like Main> fib 5 [0,1,1,2,3,5] Main> fib 15 ...
-2
votes
1answer
95 views

Fibonacci Sequence

I'm trying to calculate the numbers of the fibonacci Sequence under 100, but the code I made doesn't work. What I have is: def fib(n): if n == 0: return 0 elif n == 1: return ...
1
vote
2answers
62 views

Explain how to use memory caches in Python

I have the following recursive solution for the nth fibonacci number: def fib(n): if n == 0: return 0 elif n == 1: return 1 else: return fib(n-1) + fib(n-2) x=input('which fibonnaci do ...
0
votes
2answers
18 views

Print Fibonacci number

My program is supposed to output a Fibonacci number based on what the user has entered (ex. if they enter 7 the program will output 13). This portion works. The part I am having trouble with is when ...
0
votes
3answers
84 views

Fibonacci calculation

This program is supposed to get a Fibonacci number from the user and the program will calculate what it is while making sure that the user entered a positive number and a number no less than the ...
1
vote
3answers
181 views

Java Fibonacci Series - Return Values in Array

I'm trying to recursively compute the fibonacci sequence to 100, store those returned values into an array using a the buildArray method, then print values stored in the array. I am getting a "cannot ...
0
votes
2answers
128 views

LabVIEW help explain simple Fibonacci sequence

I have an assignment due for my LabVIEW class that involves a Fibonacci sequence, here is the exact question: Create a VI that uses a WHILE loop to keep calculating iterations of a Fibonacci ...
1
vote
6answers
123 views

How do I print a fibonacci sequence to the nth number in Python?

I have a homework assignment that I'm stumped on. I'm trying to write a program that outputs the fibonacci sequence up the nth number. Here's what I have so far: def fib(): n = int(input("Please ...
7
votes
3answers
194 views

Haskell- Find element in a list and return its position

So i need to make a function described as invFib :: Integer -> Maybe Integer which takes an Integer and looks for it in the fibonacci sequence (as described by the function below) fibs :: ...
0
votes
1answer
75 views

Io Language Fibonacci Problems

I'm working on an Io problem that involves the Fibonacci sequence. I'm trying to create a method that tests if a number is a Fibonacci number or not. I can't figure out why my IsAFib method isn't ...
0
votes
2answers
52 views

Fibonacci Sequence logic in Python [duplicate]

A tutorial I am going through had the following program # This program calculates the Fibonacci sequence a = 0 b = 1 count = 0 max_count = 20 while count < max_count: count = count + 1 ...
0
votes
2answers
145 views

Recursive binary tree class of Fibonacci sequence

As part of a personal project, not homework - just for my own interest and getting started in C++ I'm trying to create a binary tree of Fibonacci values; I know I'm making a number of fundemental ...
6
votes
2answers
156 views

How does this memoized fibonacci function work?

In the current exercise assignment of the Functional Programming course I'm doing, we've got to make a memoized version of a given function. To explain memoization, the following example is given: ...
0
votes
1answer
73 views

How to use BigInteger with an array?

I'm working on altering my Fibonacci sequencer so that the numbers after reaching ~100th term don't wrap around and become negative. How do I use BigInteger in this code that I wrote: package ...
5
votes
2answers
85 views

Regarding the Fibonacci Sequence example in Python's function tutorial

This is what they have: def fib(n): a, b = 0, 1 while a < n: print a, a, b = b, a+b This is what I have: def fib(n): a = 0 b = 1 while a < n: ...
-2
votes
1answer
153 views

Fibonacci Recursion in Java - No For Loops?

I don't understand what I should be doing. My professor wants us to create a Fibonacci sequence using recursion. No for loops are allowed, and I (being an amateur) don't know how to create a String of ...
0
votes
6answers
121 views

How can I exit this Recursive loop?

I am having tough time in figuring out how to exit from my recursive function My Code is public Main() { GetFibonacci(5,20); } private void GetFibonacci(int StartNUmber, int ...
0
votes
1answer
62 views

How was the recursive fibonacci function derived?

In python, a recursive function for a Fibonacci sequence that returns the nth fibonacci number can be written as: def fib(n): if n == 1: return 0 if n == 2: return 1 ...
0
votes
5answers
103 views

Is there a more elegant way to display a Fibonacci series than this?

I am learning java and am practising arrays. I decided to generate a Fibonacci series as an experiment and can't help but think there might be a simpler way to generate the series (using an array and ...
4
votes
2answers
78 views

Fibonacci wrong output? (C)

int * fibonacci(int n) { int range = n + 1; int * arr = malloc(range * sizeof(int)); arr(0) = 0; arr(1) = 1; for(int i = 2; i < range; ++i) { arr(i) = arr(0) + arr(1); ...
4
votes
4answers
350 views

fibonacci series - recursive summation

Ok, I initially wrote a simple code to return the Fibonacci number from the series based on the user input.. n=5 will produce 3.. static int fibonacci(int n) { if (n == 1) return ...
1
vote
2answers
514 views

Java: Using a Fibonacci Heap for Implementing Dijkstra's Algorithm

New here, but have been lurking as a guest for quite some time :) Okay, so I've been trying to do Dijkstra's shortest path algorithm using a Fibonacci heap (in Java). After some search, I managed to ...
7
votes
6answers
233 views

Python: Fibonacci Sequence

I'm just trying to improve my programming skill by making some basic functions. I want to fill a list with fibonacci values, but I think my code gives the sum of all the numbers put together and ...
0
votes
2answers
108 views

trouble with fibonacci number generation

Below is my Nth fibonacci number finding predicate which is ok: f(0,0). f(1,1). f(N,R):-P is N-1,Q is N-2,f(P,T1),f(Q,T2),R is T1+T2. And I am trying to generate fibonacci numbers with the ...
6
votes
2answers
220 views

How does this naive recursive fibonacci implementation not stackoverflow?

As a joke a few months ago, a coworker of mine sought out to "speed up the heat death of the universe" by calculating fibonacci numbers using this exponential algorithm: int Fib(int n) { if (n ...
1
vote
4answers
173 views

Cutting of the first 9 digits

Alright I am trying to solve a challenge one of my friends gave me to do, well I've manged to cut the last 9 digits out of a BigInteger well I had a way to cut-off the first 9 but it was so slow, it ...
0
votes
1answer
142 views

To find the 9th Fibonacci Prime number

I'm not sure if this is the right place to ask but I have run into a wall, code-wise. I am trying to find the 9th Fibonacci number which is a Prime number but am having problems. First, my function ...
3
votes
3answers
109 views

Can someone tell me why this bash script won't run?

When I try to run the script I get a "line 9: [2: command not found" error. This is my first bash script so I'm a complete beginner. #!/bin/bash num1=0 num2=1 count=2 while [$count -le $1] do ...
-3
votes
2answers
118 views

Fibonacci Sequence Formula Query [closed]

I have this code for(int Variable=2; Variable<N; Variable++) { Answer = b + c; b = c; c = Answer; } And it works for calculating the answer when with all my other for code. However ...
-3
votes
1answer
101 views

Is the program stuck?

I was able to run this program successfully but not fully. It outputs "input the fib number you want:" then I choose 10 and enter. Then nothing appears as if the program is running, not even the ...
0
votes
3answers
70 views

Why doesnt the clock work? Its stuck at 0.000000000. [closed]

http://img708.imageshack.us/img708/5089/itfib.png Its stuck at 0.000000000 on all results. I posted this up before and people were able to get a number on it but every time I try, it always gives me ...
1
vote
1answer
75 views

what am I doing wrong here? program loops non stop

This is a C program with iterative Fibonacci using clock() to time how long it takes to get the nth Fibonacci number. The program loops non stop. I know that the equations are right because I was able ...
5
votes
3answers
216 views

Is there a better way (performance) calculate fibonacci than this one?

I made this code.. And I need to get the best of it.. I really need the best performance of calculating fibonacci numbers.. please help be.. I've read some code of this type of calculation and I ...

1 2 3 4 5 7