A211162 Sophie Germain 5-almost primes.
688, 1552, 3496, 4360, 5008, 6352, 6952, 7546, 7672, 9256, 9625, 9712, 10062, 10300, 10840, 11632, 11875, 12112, 12136, 12460, 12712, 13432, 13648, 13744, 13912, 14152, 14812, 14920, 15484, 16562, 17050, 17104, 17272, 17608, 17752, 18130, 18232, 18616, 18952, 19062, 19624, 19792, 21100, 21136, 21352
Offset: 1
Keywords
Examples
a(1) = 688 because 688 = 2^4 * 43, and 2*688 + 1 = 1377 = 3^4 * 17.
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..2000
Programs
-
Magma
Is5primes:=func; [n: n in [2..22000] | Is5primes(n) and Is5primes(2*n+1)]; // Bruno Berselli, Jan 30 2013
-
Mathematica
fQ[n_] := PrimeOmega[n] == 5 == PrimeOmega[2 n + 1]; Select[Range@ 100000, fQ] (* Robert G. Wilson v *)
-
PARI
is(n)=bigomega(n)==5 && bigomega(2*n+1)==5 \\ Charles R Greathouse IV, Feb 01 2017
Comments