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!)
A359069 Smallest prime p such that p^(2n-1) - 1 is the product of 2n-1 distinct primes. 1
3, 59, 47, 79, 347, 6343, 56711, 4523 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(9) > 113500.
a(9) > 1000000, a(10) > 237000, a(11) > 209021. - Sean A. Irvine, Jan 10 2023
a(n)-1 is squarefree for all n. - Chai Wah Wu, Jan 30 2023
LINKS
EXAMPLE
a(3) = 47 since 47^(2*3-1) - 1 = 229345006 = 2*11*23*31*14621 is the product of 5 distinct primes and 47 is the smallest prime number with this property.
PROG
(PARI) isok(p, n) = my(f=factor(p^(2*n-1)-1)); issquarefree(f) && (omega(f) == 2*n-1);
a(n) = my(p=2); while (!isok(p, n), p=nextprime(p+1)); p; \\ Michel Marcus, Dec 15 2022
CROSSREFS
Sequence in context: A295409 A184950 A100611 * A139882 A139874 A155032
KEYWORD
nonn,hard,more
AUTHOR
Kevin P. Thompson, Dec 15 2022
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 May 8 19:26 EDT 2024. Contains 372341 sequences. (Running on oeis4.)