% A small Matlab script to evaluate a limit a = .5 powers = a.^[0:10]; x = powers+1; y = (x.^7-1)./(x.^2-1); [x; y]' % That's it!