A128107 Real part of the smallest Gaussian prime having a gap size of exactly A128106(n).
1, 3, 17, 23, 46, 79, 235, 221, 427, 1024, 563, 1753, 1837, 3664, 4411, 18307, 14243
Offset: 1
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
from itertools import count, islice from sympy import factorint def A354776_gen(): # generator of terms return filter(lambda n:(lambda m:all(d & 3 != 3 or m[d] & 1 == 0 for d in m))(factorint(n//2)),count(0,2)) A354776_list = list(islice(A354776_gen(),30)) # Chai Wah Wu, Jun 27 2022
Comments