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”).

A198382
Numbers n such that 90n + 37 is prime.
22
0, 1, 3, 4, 5, 6, 8, 10, 12, 14, 17, 18, 19, 22, 25, 26, 27, 28, 29, 32, 35, 38, 39, 40, 41, 43, 46, 48, 49, 55, 56, 57, 59, 60, 61, 67, 69, 70, 71, 73, 77, 78, 80, 82, 83, 85, 87, 92, 96, 101, 104, 116, 117, 118, 120, 124, 125, 127, 131, 133, 134, 136, 138
OFFSET
1,3
LINKS
FORMULA
a(n) = (A142331(n)-37)/90.
MATHEMATICA
Select[Range[0, 150], PrimeQ[90 # + 37] &] (* Vincenzo Librandi, Apr 07 2015 *)
PROG
(PARI) isok(n) = isprime(90*n+37) \\ Michel Marcus, Jul 24 2013
(Magma) [n: n in [0..150] | IsPrime(90*n+37)]; // Vincenzo Librandi, Apr 07 2015
CROSSREFS
Cf. A181732.
Sequence in context: A026512 A308192 A026506 * A173946 A051916 A130216
KEYWORD
nonn,easy
AUTHOR
J. W. Helkenberg, Oct 24 2011
STATUS
approved