The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A214149 Least prime p such that the factorization of p^2-9 contains n consecutive primes beginning with prime(3)=5. 2
7, 17, 157, 283, 20023, 20023, 6446437, 14382547, 122862737, 12925003913, 625586209427, 761375971073, 92757861866387, 15447055149567577, 192604162645538927, 192604162645538927, 724012906264106939197, 2667069644892918607163, 235168333030918497994787 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
We consider prime-smoothness for primes >=5, because primes p>3 are not divisible by 3, and so p-3 and p+3 are not divisible by 3.
LINKS
EXAMPLE
20020 = 2^2*5*7*11*13, 20026 = 2*17*19*31; 20023^2-9 contains 6 all-consecutive primes beginning with 5.
6446437^2-9 = 2^4*5*7^2*11*13*17^2*19*23*587 contains 7 all-consecutive primes, the first one being 5.
PROG
(PARI) A214149(n)={ local(a, k=1, p) ; a=prod(j=3, n+2, prime(j)) ; while(1, if( issquare(k*a+9), p=sqrtint(k*a+9) ; if(isprime(p), return(p); ) ; ) ; k++ ; ) }
(Python)
from itertools import product
from sympy import isprime, sieve, prime
from sympy.ntheory.modular import crt
def A214149(n): return 7 if n == 1 else int(min(filter(lambda n: n > 3 and isprime(n), (crt(tuple(sieve.primerange(5, prime(n+2)+1)), t)[0] for t in product((3, -3), repeat=n))))) # Chai Wah Wu, Jun 01 2022
CROSSREFS
Sequence in context: A244279 A364703 A325584 * A147643 A367809 A061159
KEYWORD
nonn
AUTHOR
Robin Garcia, Jul 05 2012
EXTENSIONS
More terms from Max Alekseyev, Aug 22 2012
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 June 8 22:25 EDT 2024. Contains 373227 sequences. (Running on oeis4.)