login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A115398
Numbers k such that both k^2+1 and 2^k + 1 are semiprimes.
0
3, 5, 11, 12, 19, 28, 61, 64, 79, 92, 101, 104, 199, 356, 596, 692, 1709, 3539, 3824
OFFSET
1,1
COMMENTS
Intersection of A085722 and A092559.
EXAMPLE
11 is a term because 11^2 + 1 = 122 = 2*61 (semiprime) and 2^11 + 1 = 2049 = 3*683 (semiprime).
MATHEMATICA
Select[Range[700], PrimeOmega[#^2+1]==PrimeOmega[2^#+1]==2&] (* Harvey P. Dale, Apr 14 2019 *)
PROG
(PARI) isok(n) = (bigomega(n^2+1) == 2) && (bigomega(2^n+1) == 2); \\ Michel Marcus, Oct 10 2013
(Magma) IsSemiprime:=func<n | &+[k[2]: k in Factorization(n)] eq 2>; [n: n in [2..700] | IsSemiprime(n^2+1) and IsSemiprime(2^n+1)]; // Vincenzo Librandi, Oct 10 2013
CROSSREFS
Sequence in context: A072063 A242269 A309426 * A014597 A357369 A130603
KEYWORD
nonn,more
AUTHOR
Zak Seidov, Mar 08 2006
EXTENSIONS
a(17)-a(19) from Robert Israel, Nov 27 2023
STATUS
approved