The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A176071 Numbers of the form 2^k + k + 1 that are the product of two distinct primes. 0
21, 38, 265, 4109, 65553, 262163, 1048597, 67108891, 274877906983, 4503599627370549, 73786976294838206531, 75557863725914323419213, 302231454903657293676623, 5192296858534827628530496329220209, 10889035741470030830827987437816582766726, 95780971304118053647396689196894323976171195136475313 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
21 = 3 * 7 = 2^4 + 4 + 1
MATHEMATICA
f[n_]:=Last/@FactorInteger[n]=={1, 1}; Select[Array[2^#+#+1&, 140, 0], f[ # ]&]
Select[Table[2^k+k+1, {k, 0, 200}], PrimeNu[#]==PrimeOmega[#]==2&] (* Harvey P. Dale, Jul 11 2023 *)
PROG
(PARI) is(n) = my(f = factor(n), e = logint(n, 2)); f[, 2] == [1, 1]~ && n == 1<<e + e + 1 \\ David A. Corneth, May 27 2023
CROSSREFS
Sequence in context: A061906 A139768 A307278 * A072708 A338330 A102478
KEYWORD
nonn
AUTHOR
EXTENSIONS
Name corrected by David A. Corneth, May 27 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 June 6 18:20 EDT 2024. Contains 373134 sequences. (Running on oeis4.)