login

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”).

A139534
Numbers k such that numbers 24*k + 17 and 24*k + 19 are twin primes.
2
0, 1, 5, 11, 21, 23, 25, 26, 33, 35, 36, 43, 53, 61, 70, 71, 86, 88, 110, 113, 116, 123, 135, 138, 163, 166, 168, 175, 176, 180, 186, 193, 196, 208, 225, 226, 235, 243, 253, 268, 273, 278, 281, 310, 333, 355, 373, 376, 386, 410, 413, 435, 438, 453, 455, 460, 478
OFFSET
1,3
LINKS
MATHEMATICA
a = {}; Do[If[PrimeQ[24 n + 17] && PrimeQ[24 n + 19], AppendTo[a, n]], {n, 0, 2000}]; a
PROG
(Magma) [k:k in [0..500]|IsPrime(24*k + 17) and IsPrime(24*k + 19)]; // Marius A. Burtea, Dec 31 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Artur Jasinski, Apr 25 2008
STATUS
approved