#include int count_divisors(unsigned int triangle) { unsigned int i; int count = 2; int limit = (int) ceil(sqrt(triangle)); for(i=2; i