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!)
A362957 a(n) is the least prime p such that the number of distinct prime factors of p^n + 1 sets a new record. 4
2, 3, 5, 43, 17, 47, 151, 1697, 59, 2153, 521, 13183, 30089, 20753, 3769 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(16) > 2.3*10^6; to see if there has been any progress see also A280005(16).
LINKS
PROG
(PARI) smallf(q, nmax) = {my(qq=q, j=0); forprime (p=2, nmax, my(k=0); while (qq%p==0, k++; qq/=p); if (k>0, j++; )); [j, qq]};
a362957(upto) = {my(nfmax=0); for (n=1, upto, forprime (p=2, oo, my(f=p^n+1, s=smallf(f, p)); if (s[1]<n\3, next); my(nf=omega(s[2])+s[1]); if (nf>nfmax, print1(p, ", "); nfmax=nf; break)))};
a362957(12)
CROSSREFS
Sequence in context: A136015 A106713 A106820 * A042469 A107990 A117460
KEYWORD
nonn,hard,more
AUTHOR
Hugo Pfoertner, Jun 11 2023
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 September 17 11:15 EDT 2024. Contains 375987 sequences. (Running on oeis4.)