A166409 Odd numbers corresponding to the positions of zeros in A166406.
5, 13, 17, 21, 29, 33, 37, 41, 45, 53, 57, 61, 65, 69, 73, 77, 85, 89, 93, 97, 99, 101, 105, 109, 113, 117, 125, 129, 133, 137, 141, 145, 147, 149, 153, 157, 161, 165, 173, 177, 181, 185, 189, 193, 197, 201, 205, 207, 209, 213, 217, 221, 229, 233, 237, 241
Offset: 1
Keywords
Programs
-
Python
from sympy import jacobi_symbol as J def a(n): l=0 m=0 for i in range(1, 2*n + 2): if J(i, 2*n + 1)==-1: l+=i elif J(i, 2*n + 1)==1: m+=i return l - m print([2*n + 1 for n in range(201) if a(n)==0]) # Indranil Ghosh, Jun 12 2017
Comments