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!)
A237116 Larger prime factor of the smallest semiprime of the form k^prime(n)+1, or 0 if no such semiprime exists. 3
5, 3, 11, 43, 683, 2731, 43691, 174763, 2796203, 30700509570548867919143006984001590182379037690061451374819102749638205499276411, 715827883, 20988936657440586486151264256610222593863921, 5818271958090539483866337715340286685859615238455923067178938830011337070812055467405944360219483401 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
For n > 1, smallest prime of the form ((p-1)^prime(n)+1)/p, where p is prime; the corresponding primes p are A237115(n) = 3, 3, 3, 3, 3, 3, 3, 3, 691, 3, 17, ... and the corresponding semiprimes (p-1)^prime(n)+1 are A237114(n) = 9, 33, 129, 2049, 8193, 131073, 524289, 8388609, ... .
It appears that a(n) == 1 (mod prime(n)), for all n <> 2. See 4th comment in A237114.
LINKS
Eric Weisstein's World of Mathematics, Semiprime
Wikipedia, Semiprime
FORMULA
a(n) = A237114(n)/A237115(n), for n > 0.
a(n) = ((A237115(n)-1)^prime(n)+1)/A237115(n), for n > 1.
EXAMPLE
Prime(1)=2 and the smallest semiprime of the form k^2+1 is 3^2+1 = 10 = 2*5, so a(1) = 5.
Prime(2)=3 and the smallest semiprime of the form k^3+1 is 2^3+1 = 9 = 3*3, so a(2) = 3.
MATHEMATICA
L = {5}; Do[p = Prime[k]; n = 1; q = Prime[n] - 1; cp = (q^p + 1)/(q + 1); While[! PrimeQ[cp], n = n + 1; q = Prime[n] - 1; cp = (q^p + 1)/(q + 1)]; L = Append[L, cp], {k, 2, 13}]; L
CROSSREFS
Sequence in context: A259650 A165670 A221869 * A141234 A130180 A245288
KEYWORD
nonn
AUTHOR
Jonathan Sondow, Feb 05 2014
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 17 23:23 EDT 2024. Contains 371767 sequences. (Running on oeis4.)