The article discusses programming with big number libraries, specifically cautioning against using recursive procedures due to potential stack overflow issues when dealing with large numbers. It proposes designing non-recursive algorithms to manage big number computations better, providing examples of converting recursive to non-recursive procedures. Additionally, the article illustrates these concepts with practical implementations using the GMP library for factorization of large odd numbers.