OFFSET
1,2
COMMENTS
One less than the associated entry in A105760, two less than in A089038, three less than in A067076. - R. J. Mathar, Jan 05 2011
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
MATHEMATICA
(Prime[Range[5, 100]] - 9)/2 (* Vladimir Joseph Stephan Orlovsky, Feb 08 2010 *)
Select[Range[0, 200], PrimeQ[2 # + 9]&] (* Vincenzo Librandi, Sep 24 2012 *)
PROG
(Magma) [n: n in [0..200] | IsPrime(2*n+9)]; // Vincenzo Librandi, Sep 24 2012
(PARI) is(n)=isprime(2*n+9) \\ Charles R Greathouse IV, Jul 12 2016
(Sage) [n for n in (0..200) if is_prime(2*n+9) ] # G. C. Greubel, May 21 2019
(GAP) Filtered([0..200], k-> IsPrime(2*k+9) ) # G. C. Greubel, May 21 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Jan 25 2009
EXTENSIONS
Edited by N. J. A. Sloane, Jun 23 2010
Definition clarified by Zak Seidov, Jul 11 2014
STATUS
approved