fork download
  1. for n in range(1, 40000):
  2. if (1 + 2 ** (2 * n + 1)) % ((2 * n + 1) ** 2) == 0:
  3. print(n)
  4.  
Success #stdin #stdout 4.62s 27712KB
stdin
Standard input is empty
stdout
1