A256387 Numbers n such that no prime can be the arithmetic mean of 2 semiprimes whose difference is 2*n.
5, 7, 11, 13, 17, 19, 21, 23, 25, 29, 31, 33, 35, 37, 41, 43, 45, 47, 49, 51, 53, 55, 59, 61, 63, 65, 67, 71, 73, 75, 77, 79, 81, 83, 85, 87, 89, 91, 93, 95, 97, 101, 103, 107, 109, 111, 113, 115, 117, 119, 121, 123, 125, 127, 129, 131, 133, 137, 139, 141, 143
Offset: 1
Keywords
Examples
A256383 is the list of numbers n such that n-5 and n+5 are semiprimes, and it contains no prime, hence 5 is in the sequence.
Links
- Robert Israel, Table of n, a(n) for n = 1..10000
Programs
-
Maple
select(t -> not isprime(t+4) or numtheory:-bigomega(2*t+4) <> 2, [seq(i,i=1..1000,2)]); # Robert Israel, Apr 13 2020
Comments