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!)
A242115 Woodall semiprimes: Semiprimes of the form n*2^n - 1. 2
159, 895, 2047, 4607, 10239, 49151, 4718591, 20971519, 838860799, 137438953471, 5085241278463, 21440476741631, 340010386766614455386111, 96714065569170333976494079, 3288278229351791355200798719, 111414603535684224740921180159, 15370263527767281493147526365183 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The n-th Woodall number is Wn = n*2^n - 1.
If Wn is semiprime, it is in the sequence.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..47 (terms 1..26 from K. D. Bajpai)
FORMULA
a(n) = A003261(A242273(n)). - Amiram Eldar, Nov 27 2019
EXAMPLE
a(1) = 159 = (5*2^5 - 1) is 5th Woodall number and 159 = 3*53 which is semiprime.
a(2) = 895 = (7*2^7 - 1) is 7th Woodall number and 895 = 5*179 which is semiprime.
MAPLE
with(numtheory): A242115:= proc(); if bigomega(x*2^x-1)=2 then RETURN (x*2^x-1); fi; end: seq(A242115 (), x=1..200);
MATHEMATICA
Select[Table[n*2^n-1, {n, 100}], PrimeOmega[#]==2&] (* Harvey P. Dale, Jan 03 2019 *)
PROG
(PARI) for(n=1, 1000, if(bigomega(n*2^n-1)==2, print1(n*2^n-1, ", "))) \\ Colin Barker, May 07 2014
CROSSREFS
Sequence in context: A250659 A280971 A090948 * A227709 A212780 A232408
KEYWORD
nonn
AUTHOR
K. D. Bajpai, May 04 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 25 12:53 EDT 2024. Contains 371969 sequences. (Running on oeis4.)