#!/bin/sh
#
# Factorize the first Fibonacci numbers
#
PATH=$PATH:.:../samuel
N=1
P=1
while true; do
	echo "$N ="
	echo -n "  "
	factorint $N
	t=$P
	P=$N
	N=`echo "$N+$t;" | samuel | tr -d +`
done
