The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A144427 Primes of the form (prime(n) + (-1)^n*3)/2. 0
3, 5, 7, 11, 19, 23, 37, 41, 47, 53, 67, 67, 71, 73, 83, 97, 101, 113, 127, 127, 137, 137, 157, 181, 193, 193, 199, 223, 223, 229, 233, 241, 307, 311, 331, 337, 353, 373, 379, 397, 421, 433, 457, 467, 487, 487, 503, 547, 557, 563, 563, 577, 599, 607, 613, 613 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
The first five integers n at which (prime(n) + (-1)^n*3)/2 yields a prime are 2, 4, 7, 8 and 13, so
a(1) = (prime(2) + (-1)^2)/2 = (3 + 3)/2 = 3.
a(2) = (prime(4) + (-1)^4)/2 = (7 + 3)/2 = 5.
a(3) = (prime(7) + (-1)^7)/2 = (17 - 3)/2 = 7.
a(4) = (prime(8) + (-1)^8)/2 = (19 + 3)/2 = 11.
a(5) = (prime(13) + (-1)^13)/2 = (41 - 3)/2 = 19.
MAPLE
for n from 1 to 300 do p := ithprime(n) ; c := (p+3*(-1)^n)/2 ; if type(c, 'integer') then if isprime(c) then printf("%d, ", c) ; end if; end if; end do: # R. J. Mathar, May 01 2010
PROG
(PARI) for(n=2, 1e3, if(isprime(k=(prime(n)+(-1)^n*3)/2), print1(k", "))) \\ Altug Alkan, Oct 18 2015
CROSSREFS
Cf. A000040.
Sequence in context: A111052 A138536 A093929 * A082603 A362250 A161420
KEYWORD
nonn
AUTHOR
EXTENSIONS
Corrected (337 inserted, 367 removed) by R. J. Mathar, May 01 2010
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 14 02:26 EDT 2024. Contains 372528 sequences. (Running on oeis4.)