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!)
A103509 a(n) is the least j such that 2n+1 = 2*A000040(k) + A000040(j) for some k > 1, or 0 if no such j exists. 4
0, 0, 0, 2, 3, 2, 3, 2, 3, 4, 6, 2, 3, 2, 3, 4, 6, 2, 3, 2, 3, 4, 6, 2, 3, 4, 7, 5, 6, 2, 3, 2, 3, 4, 6, 5, 6, 2, 3, 4, 12, 2, 3, 2, 3, 4, 6, 2, 3, 4, 7, 5, 6, 2, 3, 4, 10, 5, 6, 2, 3, 2, 3, 4, 6, 5, 6, 2, 3, 4, 12, 2, 3, 2, 3, 4, 6, 5, 6, 2, 3, 4, 18, 2, 3, 4, 7, 5, 6, 2, 3, 4, 10, 5, 6, 15, 7, 2, 3, 4, 12, 2, 3, 2, 3 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
FORMULA
a(n) = A049084(A103506(n)), for n >= 4.
EXAMPLE
For n < 4 there are no such primes, thus a(1)=a(2)=a(3)=0.
For n=4, 2*4+1 = 9 = 2*3+3 and 3=A000040(2), thus a(4)=2.
For n=11, 2*11+1 = 23 = 13+2*5 and 13=A000040(6), thus a(11)=6.
MATHEMATICA
Do[m = 3; While[ ! (PrimeQ[m] && (((n - m)/2) > 2) && PrimeQ[(n - m)/2]), m = m + 2]; k = PrimePi[m]; Print[k], {n, 9, 299, 2}]
PROG
(Scheme, with Aubrey Jaffer's SLIB Scheme library from http://www.swiss.ai.mit.edu/~jaffer/SLIB.html )
(define (A103509 n) (let ((o (+ (* 2 n) 1))) (let loop ((i 2)) (let ((p2 (A000040 i))) (cond ((> p2 (- o 6)) 0) ((prime? (/ (- o p2) 2)) i) (else (loop (+ 1 i)))))))) -- Antti Karttunen, Jun 19 2007
(PARI) A103509(n) = if(n<=3, 0, my(o=n+n+1); for(i=2, oo, if(isprime((o-prime(i))/2), return(i)))); \\ Antti Karttunen, Mar 30 2021
CROSSREFS
Can be used to compute A103506 and A103510. Cf. A103507.
Sequence in context: A366912 A276090 A073820 * A361929 A252941 A069898
KEYWORD
nonn
AUTHOR
Lei Zhou, Feb 10 2005
EXTENSIONS
Edited by Antti Karttunen, Jun 19 2007
STATUS
approved

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 April 20 05:25 EDT 2024. Contains 371798 sequences. (Running on oeis4.)