proposed
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”).
proposed
approved
editing
proposed
a(n) = A006254(n) - 2 = A086801(n+1)/2. [Corrected by M. F. Hasler, Feb 14 2024]
(PARI) { n=0; for (m=0, 10^10, if (isprime(2*m + 3), write("b067076.txt", n++, " ", m); if (n==1000, return)) ) } \\ Harry J. Smith, May 05 2010
(PARI) [k | k<-[0..99], isprime(2*k+3)] \\ for illustration
(PARI) A067076(n) = (prime(n+1)-3)/2 \\ M. F. Hasler, Feb 14 2024
editing
approved
Solutions of the equation (2*n+3)' = 1, where n' is the arithmetic derivative of n. - Paolo P. Lava, Nov 15 2012
approved
editing
(MAGMAMagma)[n: n in [0..200]| IsPrime(2*n+3)]; // Vincenzo Librandi, Feb 23 2012
proposed
approved
editing
proposed
lst={}; Do[If[PrimeQ(Prime[2*n+3], AppendToRange[lst, n100]+1], {n, 10^-3}]; lst )/2 (* Vladimir Joseph Stephan Orlovsky, Sep 08 2008 , modified by _G. C. Greubel_, May 21 2019 *)
(Sage) [n for n in (0..200) if is_prime(2*n+3) ] # G. C. Greubel, May 21 2019
(GAP) Filtered([0..200], k-> IsPrime(2*k+3) ) # G. C. Greubel, May 21 2019
approved
editing