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!)
A309152 Numbers that can be written as the sum of two primes whose difference is also prime. 6
7, 8, 9, 12, 15, 21, 24, 33, 36, 45, 60, 63, 75, 84, 105, 111, 120, 141, 144, 153, 183, 195, 201, 204, 216, 231, 243, 273, 276, 285, 300, 315, 351, 360, 384, 396, 423, 435, 456, 465, 480, 525, 540, 564, 573, 603, 621, 624, 645, 663, 696, 813, 825, 831, 840 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Numbers k such that k = p + q where p < q and p, q, and q - p are all prime.
Union of A054735 and (A006512 + 2). - Robert Israel, Jul 15 2019
From Bernard Schott, Jul 15 2019: (Start)
If k is even, then k is in A054735 with q - p = 2.
If k is odd, then k is in (A006512 + 2) with p = 2. (End)
LINKS
MAPLE
P:= select(isprime, {seq(i, i=3..10000, 2)}):
T:= P intersect map(`+`, P, 2):
A1:= map(`+`, T, 2):
A2:= select(`<`, map(t -> 2*t-2, T), max(A1)):
sort(convert(A1 union A2, list); # Robert Israel, Jul 15 2019
PROG
(PARI) is(n) = my(x=n-1, y=1); while(x >= y, if(ispseudoprime(x) && ispseudoprime(y), if(ispseudoprime(x-y), return(1))); x--; y++); 0 \\ Felix Fröhlich, Jul 14 2019
CROSSREFS
Sequence in context: A045158 A074328 A174185 * A170933 A297257 A296698
KEYWORD
nonn
AUTHOR
Wesley Ivan Hurt, Jul 14 2019
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 August 25 19:47 EDT 2024. Contains 375454 sequences. (Running on oeis4.)