login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A138918
Numbers n such that 18n-1 is prime.
6
1, 3, 4, 5, 6, 10, 11, 13, 14, 15, 20, 24, 25, 26, 28, 29, 31, 33, 36, 38, 39, 40, 43, 45, 46, 48, 49, 53, 54, 59, 61, 64, 66, 68, 70, 71, 76, 80, 83, 84, 88, 89, 90, 91, 95, 104, 105, 106, 110, 111, 115, 116, 119, 123, 126, 130, 131, 133, 134, 136, 144, 145, 148, 150
OFFSET
1,2
COMMENTS
Corresponding primes are in A061242.
No terms in this sequence end with 2 or 7 (18n-1 ends with 5 when the last digit of n is 2 or 7). - David Garber, Jun 25 2015
MATHEMATICA
Select[Range[200], PrimeQ[18#-1]&] (* Harvey P. Dale, Mar 09 2011 *)
PROG
(Python)
from gmpy2 import divexact, t_mod
from sympy import prime
A138918 = [divexact(p+1, 18) for p in (prime(n) for n in range(1, 10**6)) if not t_mod(p+1, 18)] # Chai Wah Wu, Sep 02 2014
(PARI) for(n=1, 10^3, if(isprime(18*n-1), print1(n, ", "))) \\ Derek Orr, Sep 03 2014
(Magma) [n: n in [0..150] | IsPrime(18*n-1)]; // Vincenzo Librandi, Jun 27 2015
CROSSREFS
Sequence in context: A059877 A047307 A179774 * A071186 A263118 A219041
KEYWORD
nonn,easy
AUTHOR
Zak Seidov, Apr 03 2008
STATUS
approved