Oh, yeah, my bad; it is the 1001th term. That makes the one my computer chugged all night for the million and first term, and it was bigger than the gnome terminal can display

... so I don't have it.
Here's the program, as requested
Code:
#! /usr/bin/python
a,b,c = 0,1,1000
while c > 0:
a,b,c = b, a+b, c-1
print b
c could be modified to get any given term, adjusting for the first term already being calculated. I'm not sure if there's a more efficient way of doing this in Python, just started learning it.
Perl impresses me.