login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A241670 Semiprimes of the form n^4 - n^3 - n - 1. 2

%I #21 Sep 08 2022 08:46:07

%S 187,1073,8989,35657,61423,151979,1632923,2495959,8345537,9658823,

%T 18687173,49194347,64880909,77244217,179502923,250046873,451259573,

%U 502874849,588444323,651263839,830296829,1723401587,1935548789,4552183739,4839132407,8739047573,13324055659

%N Semiprimes of the form n^4 - n^3 - n - 1.

%C Since n^4 - n^3 - n - 1 = (n^2 + 1)*(n^2 - n - 1), it is a must that (n^2 + 1) and (n^2 - n - 1) both should be prime.

%C Primes of the form (n^2+1) are at A002496.

%C Primes of the form (n^2-n-1) are at A002327.

%H K. D. Bajpai, <a href="/A241670/b241670.txt">Table of n, a(n) for n = 1..5330</a>

%e 187 is in the sequence because 4^4 - 4^3 - 4 - 1 = 187 = 11 * 17, which is semiprime.

%e 1073 is in the sequence because 6^4 - 6^3 - 6 - 1 = 1073 = 29 * 37, which is semiprime.

%p select(k -> numtheory:-bigomega(k)=2, [seq(x^4 - x^3 - x - 1, x=1..1000)]);

%t Select[Table[n^4 - n^3 - n - 1, {n, 500}], PrimeOmega[#] == 2 &]

%o (PARI)

%o for(n=1,10^4,p=n^2+1;q=n^2-n-1;if(isprime(p)&&isprime(q),print1(p*q,", "))) \\ _Derek Orr_, Aug 09 2014

%o (Magma) IsSemiprime:= func<n | &+[d[2]: d in Factorization(n)] eq 2>; [s: n in [1..400] | IsSemiprime(s) where s is n^4 - n^3 - n - 1]; // _Vincenzo Librandi_, Aug 10 2014

%Y Cf. A000040, A001358, A002327, A002496.

%K nonn,less

%O 1,1

%A _K. D. Bajpai_, Aug 09 2014

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 18 16:42 EDT 2024. Contains 376002 sequences. (Running on oeis4.)