setTimeout e jQuery: RangeError não capturado: tamanho máximo da pilha de chamadas excedido [duplicado]

Esta pergunta já tem uma resposta aqui:

Tamanho máximo da pilha de chamadas excedido durante uma chamada setTimeout 3 respostas

Estou tentando chamar minha classe à medida que a página é carregada, além de recarregar os resultados a cada X segundos, no entanto, seguindo os tutoriais setTimeout, o jquery parece estar me lançando um erro que eu não entendo, considerando sua falta de sintaxe.

RangeError não capturado: tamanho máximo da pilha de chamadas excedido

var rand = function() {
    return Math.random().toString(36).substr(2);
};

lhc();

function lhc(){
    $('#lhcb a').each(function() {
        var rawlink = $(this).attr("href");
        var link = encodeURIComponent( rawlink );
        var token = rand();
        var href = $(this).prop('href');
        var proceed = $.getJSON( "lhc/link.php?link=" + link + "&a=c", function( data ) {
            if ( data.proceed == 'true' ) {
                return true;
            } else {
                return false;
            }
        }).error(function(e) { alert("error"); console.log(e);});
        if ( href.match("^javascript:") ) {
            proceed = false;
        }
        if ( rawlink.charAt(0) != '#' ) {
            if ( proceed ) {
                $(this).after( " <span style='font-size:xx-small;'>( Hits: <span id='" + token + "'></span> )</span>" );
                    $.getJSON( "lhc/link.php?link=" + link + "&a=q", function( data ) {
                        $('#' + token).html(data['hits']);
                    }).error(function(e) { alert("error"); console.log(e);});
                $(this).attr( "href", "lhc/link.php?link=" + link + "&a=g" );
            }
        }

    });
    setTimeout(lhc(), 5000);
}

questionAnswers(1)

yourAnswerToTheQuestion