login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A061668 Numbers n such that x-4, x-2, x+2, x+4 are primes, where x = 30*n - 15. 1
1, 4, 7, 28, 50, 63, 70, 109, 116, 189, 315, 434, 522, 525, 536, 602, 631, 648, 701, 743, 844, 1058, 1162, 1460, 1712, 1845, 2100, 2241, 2317, 2408, 2576, 2657, 2702, 2758, 2961, 3262, 3305, 3371, 3662, 3885, 3977, 4074, 4516, 4806, 5243, 5524, 5562, 5706 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

COMMENTS

Ignoring (5,7,11,13) another name for this sequence could be "twin prime twins".

LINKS

Harry J. Smith, Table of n, a(n) for n=1,...,1000

EXAMPLE

4 is in the sequence because 101, 103, 107, 109 are primes and 105= 4*30-15.

MATHEMATICA

p4Q[n_]:=Module[{c=30n-15}, And@@PrimeQ[{c-4, c-2, c+2, c+4}]]; Select[ Range[ 6000], p4Q] (* From Harvey P. Dale, Dec 04 2011 *)

PROG

(PARI) { n=0; for (a=1, 391335, x=30*a - 15; if (isprime(x-4) && isprime(x-2) && isprime(x+2) && isprime(x+4), write("b061668.txt", n++, " ", a)) ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Jul 26 2009]

CROSSREFS

30 * a(n) = A007530(n+1) + 19.

Sequence in context: A076148 A203570 A146085 * A128386 A149074 A149075

Adjacent sequences:  A061665 A061666 A061667 * A061669 A061670 A061671

KEYWORD

easy,nonn

AUTHOR

Frank.Ellermann(AT)t-online.de, Jun 15 2001

EXTENSIONS

More terms from Larry Reeves (larryr(AT)acm.org), Jun 20 2001

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 23:53 EST 2012. Contains 205689 sequences.