import math

def convergencia(a, inc, eps):
    x= a
    fx= math.e**(-4*(x**2))*(4+math.sin(x**2 + 4))
    l_nova=[]
    while (abs(fx)>=eps):
        l_nova.append(fx)
        x= x+inc
        fx= math.e**(-4*(x**2))*(4+math.sin(x**2 + 4))
    l_nova.append(fx)
    return l_nova
