暴力搜索即得结果是$249$。
注:OEIS A023108中提供的结果是246。原因在于使用的定义不同,本题中必须至少进行一次迭代,而OEIS A023108的记录中认为利克瑞尔数不包括本身已经是回文数的数。
def isLychrel(n):
n+=int(str(n)[::-1])
i=1
while i < 51 and str(n)!=str(n)[::-1]:
n+=int(str(n)[::-1])
i+=1
return i==51
print sum(isLychrel(n) for n in range(1,10000))
|