A259826 Numbers n such that n is a multiple of 6 and both n-1 and n+1 are composite.
120, 144, 186, 204, 216, 246, 288, 300, 324, 342, 414, 426, 474, 516, 528, 534, 552, 582, 624, 636, 666, 696, 714, 780, 792, 804, 816, 834, 846, 870, 894, 900, 924, 960, 1002, 1026, 1044, 1056, 1074, 1080, 1134, 1140, 1146, 1158, 1176, 1206, 1242, 1254, 1266, 1272, 1314, 1332, 1338, 1344, 1350
Offset: 1
Keywords
Examples
For n=120, 120 is a multiple of 6, and both 119 and 121 are composite.
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..2500
Crossrefs
Cf. A060461.
Programs
-
Magma
[n: n in [6..2000 by 6] | not IsPrime(n-1) and not IsPrime(n+1)]; // Vincenzo Librandi, Jul 08 2015
-
Mathematica
Select[6*Range[500], AllTrue[# + {1, -1}, CompositeQ] &] (* Harvey P. Dale, May 21 2017 *)
-
PARI
select(x->!isprime(x-1)&&!isprime(x+1), vector(10^3,j,6*j) ) \\ Joerg Arndt, Jul 06 2015
Formula
a(n) = 6 * A060461(n). - Brian Almond, Jun 22 2020
Comments