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

A109604
Numbers n such that 41*n - 43 is prime.
0
10, 12, 16, 22, 24, 30, 36, 40, 52, 60, 66, 72, 82, 100, 102, 112, 120, 142, 144, 154, 156, 162, 166, 186, 192, 196, 214, 222, 234, 252, 256, 264, 270, 276, 280, 282, 294, 304, 306, 322, 324, 330, 346, 352, 360, 376, 382, 394, 396, 406, 414, 424, 432, 462, 472
OFFSET
1,1
EXAMPLE
If n=10 then 41*n - 43 = 367 (prime).
If n=82 then 41*n - 43 = 3319 (prime).
MAPLE
select(n-> isprime(41*n-43), [$0..600])[]; # Emeric Deutsch, Aug 07 2005
MATHEMATICA
Select[Range[2, 500], PrimeQ[41#-43]&] (* Harvey P. Dale, Apr 06 2016 *)
PROG
(PARI) is(n)=isprime(41*n-43) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
Sequence in context: A096128 A334939 A063192 * A187710 A063096 A270819
KEYWORD
nonn,easy
AUTHOR
Parthasarathy Nambi, Jul 30 2005
EXTENSIONS
More terms from Emeric Deutsch, Aug 07 2005
STATUS
approved