Homestar Runner Wiki Forum
http://forum.hrwiki.org/

Count up to 10^100 (Fibonacci sequence edition)
http://forum.hrwiki.org/viewtopic.php?f=16&t=8055
Page 2 of 7

Author:  InterruptorJones [ Wed Apr 26, 2006 12:35 am ]
Post subject: 

317,811

Edit: TOTPDNACCI! :eek: :eek:

Author:  Speckeldorf [ Wed Apr 26, 2006 12:38 am ]
Post subject: 

Image

514229.jpg!!

Author:  InterruptorJones [ Wed Apr 26, 2006 12:40 am ]
Post subject: 

832,040!

Author:  Speckeldorf [ Wed Apr 26, 2006 12:42 am ]
Post subject: 

1,346,269

Author:  ed 'lim' smilde [ Wed Apr 26, 2006 12:43 am ]
Post subject: 

2 178 309 factorial!
I mean 2 178 309!
Sorry spec, usually I try to make sure I didn't post a late number, but I forgot that time...

Author:  InterruptorJones [ Wed Apr 26, 2006 12:44 am ]
Post subject: 

3,524,578!

Author:  Speckeldorf [ Wed Apr 26, 2006 12:44 am ]
Post subject: 

Image

Author:  ed 'lim' smilde [ Wed Apr 26, 2006 12:45 am ]
Post subject: 

5 702 887

Author:  Speckeldorf [ Wed Apr 26, 2006 12:47 am ]
Post subject: 

Image

Author:  InterruptorJones [ Wed Apr 26, 2006 12:48 am ]
Post subject: 

14,930,352

Author:  The Chessman [ Wed Apr 26, 2006 12:49 am ]
Post subject: 

I think we're at 24,157,817.

Author:  Speckeldorf [ Wed Apr 26, 2006 12:50 am ]
Post subject: 

Forums a bit slow at the moment...

14930352

Edit: Buh. I'm leaving for now. Um... yeah.

Author:  ed 'lim' smilde [ Wed Apr 26, 2006 12:51 am ]
Post subject: 

39 088 169

Author:  InterruptorJones [ Wed Apr 26, 2006 12:51 am ]
Post subject: 

63,245,986

Author:  ed 'lim' smilde [ Wed Apr 26, 2006 12:54 am ]
Post subject: 

|oZ 334 lSS

Author:  InterruptorJones [ Wed Apr 26, 2006 12:55 am ]
Post subject: 

165 580 141

Author:  IantheGecko [ Wed Apr 26, 2006 12:57 am ]
Post subject: 

F(42) = 267914296!

Author:  ed 'lim' smilde [ Wed Apr 26, 2006 12:57 am ]
Post subject: 

433 494 437

Author:  InterruptorJones [ Wed Apr 26, 2006 12:59 am ]
Post subject: 

[s]433494437

(PRIME LOL!)[/s]

Er...
701,408,733.

Author:  ed 'lim' smilde [ Wed Apr 26, 2006 1:00 am ]
Post subject: 

arg,
1 134 903 170

Author:  Color Printer [ Wed Apr 26, 2006 1:17 am ]
Post subject: 

Wait, isn't 10^100 a GOOGOL?!?!?

1836311903 (I think)

Author:  Ju Ju Master [ Wed Apr 26, 2006 1:23 am ]
Post subject: 

Color Printer wrote:
Wait, isn't 10^100 a GOOGOL?!?!?

1836311903 (I think)


It surely is. Google can tell you that.

Author:  IantheGecko [ Wed Apr 26, 2006 1:30 am ]
Post subject: 

EUROPEAN'd!

2.971.215.073

Author:  ed 'lim' smilde [ Wed Apr 26, 2006 1:41 am ]
Post subject: 

4 807 526 976

Author:  InterruptorJones [ Wed Apr 26, 2006 2:18 am ]
Post subject: 

Seven billion seven hundred seventy-eight million seven hundred forty-two thousand and forty-nine.

(7,778,742,049)

Author:  IantheGecko [ Wed Apr 26, 2006 2:23 am ]
Post subject: 

12.586.269.025

Author:  InterruptorJones [ Wed Apr 26, 2006 5:12 am ]
Post subject: 

Code:
def mul(na, nb)
  a, b, c = na
  d, e, f = nb
  return a*d + b*e, a*e + b*f, b*e + c*f
end

def pow(a, n)
  return a if n == 1
  return pow(mul(a, a), n/2) if n & 1 == 0
  return mul(a, pow(mul(a, a), (n-1)/2))
end

def fib(n)
  return n if n < 2
  return pow([1,1,0], n-1)[0]
end

fib(51)

# => 20365011074

Author:  ed 'lim' smilde [ Wed Apr 26, 2006 9:44 pm ]
Post subject: 

Code:
var fib = new Array;
fib[1] = 0;
fib[2] = 1;
function calculate_fib(number) {
for (i = 3; i <= number; i++) {
  fib[i] = fib[i-1] + fib[i-2];
}
return fib[number];
}
document.write(calculate_fib[52]); //32 951 280 099

Author:  IantheGecko [ Wed Apr 26, 2006 9:45 pm ]
Post subject: 

53 316 291 173

Author:  InterruptorJones [ Wed Apr 26, 2006 10:23 pm ]
Post subject: 

1 0100 0001 0101 1111 0010 1010 1100 0100 1000

Er... 86,267,571,272

Page 2 of 7 All times are UTC
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
http://www.phpbb.com/