login

Revision History for A131626

(Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing all changes.
Prime subsequences in the evaluation of the first derivatives of quadratic equations with positive successive prime coefficients.
(history; published version)
#5 by Jon E. Schoenfield at Fri Mar 13 00:47:04 EDT 2015
STATUS

editing

approved

#4 by Jon E. Schoenfield at Fri Mar 13 00:47:02 EDT 2015
EXAMPLE

So the subsequence 19,29,47,67,101 is in the sequence beginning in the 6-th 6th position.

STATUS

approved

editing

#3 by N. J. A. Sloane at Tue Oct 01 21:35:23 EDT 2013
AUTHOR

_Cino Hilliard (hillcino368(AT)hotmail.com), _, Sep 03 2007

Discussion
Tue Oct 01
21:35
OEIS Server: https://oeis.org/edit/global/1959
#2 by N. J. A. Sloane at Sun Jun 29 03:00:00 EDT 2008
FORMULA

Define prime(p) = the p-th prime number. The equation f(x,p) = prime(p)x^2 + prime(p+1)x + prime(p+2) is differentiated to get f'(x,p) = 2prime(p)x + prime(p+1). Then f'(x,p) is evaluated for at p=1,2,.. for each x =1,2,.. until f'(x,p) is not prime at which point x is incremented and p=1,2,..

KEYWORD

nonn,new

nonn

#1 by N. J. A. Sloane at Sat Nov 10 03:00:00 EST 2007
NAME

Prime subsequences in the evaluation of the first derivatives of quadratic equations with positive successive prime coefficients.

DATA

7, 11, 17, 11, 17, 19, 29, 47, 67, 101, 23, 31, 47, 43, 47, 71, 59, 89, 67, 101, 167, 71, 107, 79, 83, 103, 107, 127, 191, 317, 131, 197, 139, 151, 227, 163, 167, 251, 179, 269, 191, 199, 211, 317, 223, 227, 239, 359, 251, 263, 271, 283, 307, 461, 311, 467, 331

OFFSET

1,1

COMMENTS

Conjecture: The number of primes in a row for f'(x,p) = 2*prime(p)*x + prime(p+1) is finite.

FORMULA

Define prime(p) = the p-th prime number. The equation f(x,p) = prime(p)x^2 + prime(p+1)x + prime(p+2) is differentiated to get f'(x,p) = 2prime(p)x + prime(p+1). Then f'(x,p) is evaluated for p=1,2,.. for each x =1,2,.. until f'(x,p) is not prime at which point x is incremented and p=1,2,..

EXAMPLE

For x = 4 we have 2*prime(p)*x + prime(p+1) =

2*2*4+3 = 19 prime,

2*3*4+5 = 29 prime,

2*5*4+7 = 47 prime,

2*7*4+11 = 67 prime,

2*11*4+13 = 101 prime,

2*13*4+17 = 121 not prime.

So the subsequence 19,29,47,67,101 is in the sequence beginning in the 6-th position.

PROG

(PARI) g(n) = { local(x, y, p); for(x=0, n, for(p=1, n, y=2*prime(p)*x+prime(p+1); if(isprime(y), print1(y", "), break) ) ) }

KEYWORD

nonn

AUTHOR

Cino Hilliard (hillcino368(AT)hotmail.com), Sep 03 2007

STATUS

approved