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!)
A137920 Numbers k such that 24*k-1 and 24*k+1 are twin primes. 4
3, 8, 10, 13, 18, 25, 43, 48, 55, 62, 67, 78, 87, 88, 108, 112, 113, 125, 130, 132, 140, 147, 153, 157, 172, 178, 200, 207, 218, 220, 230, 235, 245, 265, 273, 283, 290, 297, 312, 315, 337, 343, 375, 385, 393, 405, 407, 417, 428, 465, 473, 493, 503, 510, 542 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MAPLE
select(t -> isprime(24*t-1) and isprime(24*t+1), [$1..1000]); # Robert Israel, Feb 11 2018
MATHEMATICA
q=24; lst={}; Do[r=n*q; If[PrimeQ[r-1]&&PrimeQ[r+1], AppendTo[lst, n]], {n, 1, 10^3}]; lst (* Vladimir Joseph Stephan Orlovsky, Aug 07 2008 *)
Select[Range[600], PrimeQ[24 # - 1] && PrimeQ[24 # + 1] &] (* Vincenzo Librandi, Feb 12 2018 *)
PROG
(PARI) isok(k) = isprime(24*k-1) && isprime(24*k+1); \\ Michel Marcus, Feb 12 2018
(Magma) [n: n in [1..600] | IsPrime(24*n+1) and IsPrime(24*n-1)] // Vincenzo Librandi, Feb 12 2018
CROSSREFS
Sequence in context: A064147 A287573 A122529 * A263005 A126581 A003038
KEYWORD
nonn
AUTHOR
Zak Seidov, Feb 23 2008
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 April 23 22:36 EDT 2024. Contains 371917 sequences. (Running on oeis4.)