Problem 79

Square root digital expansion

Problem 81

Square root digital expansion

Problem 80

It is well known that if the square root of a natural number is not an integer, then it is irrational. The decimal expansion of such square roots is infinite without any repeating pattern at all.
The square root of two is 1.41421356237309504880..., and the digital sum of the first one hundred decimal digits is 475.
For the first one hundred natural numbers, find the total of the digital sums of the first one hundred decimal digits for all the irrational square roots.
from math import sqrt


def rational(n):
    nsq = int(sqrt(n))
    return nsq * nsq == n


def expand((num, den), limit):
    cc = 0
    for i in range(0, limit):
        (cc, num) = (cc + num / den, 10 * (num % den))
    return cc


def approximate(n):
    (a, b) = (1, 1)
    for i in range(0, 1500):
        (a, b) = (a + b * n, a + b)
    return (a, b)


def run(limit=100):
    cc = 0
    for i in range(1, limit + 1):
        if not rational(i):
            cc += expand(approximate(i), limit)
    return cc