|
Search: id:A125855
|
|
|
| A125855 |
|
Numbers n such that n+1, n+3, n+7 and n+9 are all primes. |
|
+0 2
|
|
| 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; listen)
|
|
|
OFFSET
|
1,1
|
|
|
COMMENT
|
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: A059919 A143047 A156329 this_sequence A153743 A098449 A118378
Adjacent sequences: A125852 A125853 A125854 this_sequence 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
|
|
|
Search completed in 0.002 seconds
|