in reply to Fibonacci numbers

Yes.

Replies are listed 'Best First'.
Re: Re: Fibonacci numbers
by dga (Hermit) on Oct 02, 2001 at 00:57 UTC

    I agree with jeroenes. This is very possible to do.

      Yes, it is. To reduce the problem size, the following program is likely to eventually print out any Fibonacci numbers between 0 and N-1, where N is the command line argument. In order, even. However, you must find them buried in all the other numbers, and it will take an indeterminate amount of time. It will not stop upon hitting a sequence of fibonacci numbers. (Hint: The output is random.)
      #!/usr/bin/perl -w use strict;my$N=$_[0];$\=' ';for (;;){print int rand$N}