editing
approved
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”).
editing
approved
Solutions of the equation (2*n-3)'=1, where n' is the arithmetic derivative of n. - Paolo P. Lava, Nov 27 2012
approved
editing
(MAGMAMagma) [ n: n in [1..200] | IsPrime(2*n-3) ]; // Vincenzo Librandi, Dec 26 2010
editing
approved
Select[Range[200], PrimeQ[2#-3]&] (* Harvey P. Dale, Mar 05 2022 *)
approved
editing
proposed
approved
editing
proposed
(PARI) is(n)=isprime(2*n-3) \\ Charles R Greathouse IV, Feb 17 2017(Sage) [n for n in (1..200) if is_prime(2*n-3) ] # _G. C. Greubel_, May 21 2019
(Sage) [n for n in (1..200) if is_prime(2*n-3) ] # G. C. Greubel, May 21 2019
Half of p + 3 , where p is a prime greater than 2.
(PARI) is(n)=isprime(2*n-3) \\ Charles R Greathouse IV, Feb 17 2017(Sage) [n for n in (1..200) if is_prime(2*n-3) ] # _G. C. Greubel_, May 21 2019
(GAP) Filtered([1..200], k-> IsPrime(2*k-3) ) # G. C. Greubel, May 21 2019
approved
editing
reviewed
approved