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!)
A138581 Numbers n such that 2^(2*n-15)-15 is prime. 0
8, 9, 10, 11, 19, 55, 125, 953 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
2^(2*11-15)-15=113, 2^(2*19-15)-15=8388593, 2^(2*55-15)-15=39614081257132168796771975153, ...
MATHEMATICA
q=15; For[i=q, i<=q, a={}; Do[x=2^(2*n-i)-i; If[PrimeQ[x], AppendTo[a, n]], {n, 10^2}]; Print["2^(2*n-", i, ")-", i, " ", a]; i=i+2]
Select[Range[1000], PrimeQ[2^(2#-15)-15]&] (* Harvey P. Dale, Jul 11 2023 *)
PROG
(PARI) is(n)=isprime(2^(2*n-15)-15) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
Sequence in context: A297134 A247455 A280290 * A323062 A097363 A152870
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
One more term (a(8)) from Harvey P. Dale, Jul 11 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 April 19 10:38 EDT 2024. Contains 371791 sequences. (Running on oeis4.)