[go: up one dir, main page]

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!)
Revision History for A021007 (Underlined text is an addition; strikethrough text is a deletion.)

Showing entries 1-10 | older changes
A021007 Let q_k = p*(p+2) be product of k-th pair of twin primes; sequence gives values of p+2 such that (q_k)^2 > q_{k-i}*q_{k+i} for all 1 <= i <= k-1.
(history; published version)
#18 by Bruno Berselli at Wed Apr 02 11:55:49 EDT 2014
STATUS

proposed

approved

#17 by T. D. Noe at Wed Apr 02 11:12:25 EDT 2014
STATUS

editing

proposed

#16 by T. D. Noe at Wed Apr 02 11:12:11 EDT 2014
NAME

Let q_k= = p(*(p+2) be product of k-th pair of twin primes; sequence gives values of p+2 such that (q_k)^2 > q_{k-i}}*q_{k+i} for all 1 <= i <= k-1.

DATA

5, 13, 31, 61, 103, 139, 181, 193, 229, 421, 523, 571, 601, 811, 823, 1021, 1231, 1279, 1291, 1609, 1669, 1873, 2083, 2551, 2659, 2689, 2971, 3121, 3253, 3331, 3361, 3769, 3823, 3919, 4003, 5233, 5419, 5479, 6091, 6271, 6553, 6661, 6691, 8221, 8821, 8971

COMMENTS

Even if there are infinitely many twin primes, it is not clear that this sequence is infinite. The Hardy-Littlewood conjecture implies that there are infinitely many twin primes where p+2 is not in the sequence. _. - _Robert Israel_, Apr 02 2014

EXAMPLE

E.g. ((11*13)^2 > (5*7)*(17*19): (11*13)^2 > (3*5)*(29*31)).

STATUS

reviewed

editing

#15 by Robert Israel at Wed Apr 02 11:01:52 EDT 2014
STATUS

proposed

reviewed

#14 by Robert Israel at Wed Apr 02 11:01:44 EDT 2014
STATUS

editing

proposed

#13 by Robert Israel at Wed Apr 02 11:01:25 EDT 2014
COMMENTS

Even if there are infinitely many twin primes, it is not clear that this sequence is infinite. The Hardy-Littlewood conjecture implies that there are infinitely many twin primes where p+2 is not in the sequence. Robert Israel, Apr 02 2014

MAPLE

N:= 20000:

Primes:= [seq(ithprime(i), i=1..N)]:

Twink:= select(t-> (Primes[t+1]=Primes[t]+2), [$1..N-1]):

Qk:= [seq(Primes[i]*Primes[i+1], i=Twink)]:

filter:= proc(k)

local T, i;

T:= Qk[k]^2;

for i from 1 to k-1 do

if Qk[k-i]*Qk[k+i]>=T then return false fi

od;

true

end;

R:= select(filter, [$1 .. floor(nops(Twink)/2)]):

A021007:= map(k -> Primes[Twink[k]+1], R); # Robert Israel, Apr 02 2014

STATUS

approved

editing

#12 by Bruno Berselli at Wed Apr 02 09:58:32 EDT 2014
STATUS

proposed

approved

#11 by Charles R Greathouse IV at Wed Apr 02 09:40:02 EDT 2014
STATUS

editing

proposed

#10 by Charles R Greathouse IV at Wed Apr 02 09:40:00 EDT 2014
KEYWORD

easy,nonn,changed

#9 by Charles R Greathouse IV at Wed Apr 02 09:39:52 EDT 2014
LINKS

Charles R Greathouse IV, <a href="/A021007/b021007.txt">Table of n, a(n) for n = 1..10000</a>

STATUS

proposed

editing

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 30 09:19 EDT 2024. Contains 375532 sequences. (Running on oeis4.)