A258663 Numbers n such that 9n-1 is prime.
2, 6, 8, 10, 12, 20, 22, 26, 28, 30, 40, 48, 50, 52, 56, 58, 62, 66, 72, 76, 78, 80, 86, 90, 92, 96, 98, 106, 108, 118, 122, 128, 132, 136, 140, 142, 152, 160, 166, 168, 176, 178, 180, 182, 190, 208, 210, 212, 220, 222, 230, 232, 238, 246, 252, 260
Offset: 1
Programs
-
Magma
[n: n in [1..350] | IsPrime(9*n-1)]; // Vincenzo Librandi, Jun 07 2015
-
Mathematica
Select[Range[2, 300], PrimeQ[9 # - 1] &] (* Vincenzo Librandi, Jun 07 2015 *)
-
PARI
is(n)=isprime(9*n-1) \\ Charles R Greathouse IV, Jun 06 2017
Extensions
More terms from Vincenzo Librandi, Jun 07 2015
Comments