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!)
A182353 Primes of the form n*2^n - 5. 3
3, 19, 59, 379, 4603, 1048571, 44040187, 7516192763, 6614661952700411, 13510798882111483, 477381560501272571, 16717361816799281147, 4869940435459321626619, 802726744224113772004900859 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
These are similar to the Woodall primes, A050918, and to sequence A182352, which are primes of the form n*2^n - 1 and of the form n*2^n - 3 respectively. However, this sequence seems to grow rather more slowly than those.
LINKS
EXAMPLE
3 = 2*2^2 - 5; 19 = 3*2^3 - 5; 59 = 4*2^4 - 5.
MAPLE
#choose N large, then S is the desired set
f:=n->n*2^n - 5:
S:={}:
for n from 0 to N do if(isprime(f(n))) then S:=S union {f(n)}: fi: od
MATHEMATICA
Select[Table[n*2^n-5, {n, 2, 100}], PrimeQ] (* Harvey P. Dale, Aug 06 2013 *)
CROSSREFS
Sequence in context: A164132 A106875 A215646 * A012863 A269156 A370434
KEYWORD
nonn
AUTHOR
Patrick Devlin, Apr 25 2012
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 06:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)