|
| |
|
|
A125855
|
|
Numbers n such that n+1, n+3, n+7 and n+9 are all primes.
|
|
1
| |
|
|
4, 10, 100, 190, 820, 1480, 1870, 2080, 3250, 3460, 5650, 9430, 13000, 15640, 15730, 16060, 18040, 18910, 19420, 21010, 22270, 25300, 31720, 34840, 43780, 51340, 55330, 62980, 67210, 69490, 72220, 77260, 79690, 81040, 82720, 88810, 97840
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
COMMENTS
| It seems that, with the exception of 4, all terms are multiples of 10. - Emeric Deutsch (deutsch(AT)duke.poly.edu), Dec 24 2006
|
|
|
MAPLE
| a:=proc(n): if isprime(n+1)=true and isprime(n+3)=true and isprime(n+7)=true and isprime(n+9)=true then n else fi end: seq(a(n), n=1..500000); - Emeric Deutsch (deutsch(AT)duke.poly.edu), Dec 24 2006
|
|
|
MATHEMATICA
| Do[If[(PrimeQ[x + 1]) && (PrimeQ[x + 3]) && (PrimeQ[x + 7]) && (PrimeQ[x + 9]), Print[x]], {x, 1, 10000}]
|
|
|
CROSSREFS
| Cf. A057015, A125779, A125780.
Sequence in context: A143047 A156329 A203179 * A153743 A197851 A197865
Adjacent sequences: A125852 A125853 A125854 * A125856 A125857 A125858
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Artur Jasinski (grafix(AT)csl.pl), Dec 12 2006
|
|
|
EXTENSIONS
| More terms from Emeric Deutsch (deutsch(AT)duke.poly.edu), Dec 24 2006
|
| |
|
|