|
Search: id:A100556
|
|
|
| A100556 |
|
Composite numbers q such that 2^q + q is prime. |
|
+0 1
|
|
| 9, 15, 39, 75, 81, 735, 1311, 1881, 3201, 3225, 11795
(list; graph; listen)
|
|
|
OFFSET
|
1,1
|
|
|
LINKS
|
Cino Hilliard, Title?.
|
|
EXAMPLE
|
For q=9, 2^9 + 9 = 521, prime.
Note that 2^11795 + 11795 is prime but 11795 is composite and not divisible by 3.
|
|
MATHEMATICA
|
Do[If[ !PrimeQ[n] && PrimeQ[2^n + n], Print[n]], {n, 2, 10^6}] - Ryan Propper (rpropper(AT)stanford.edu), Jul 21 2006
|
|
PROGRAM
|
(PARI) \ p^q + q is prime q not prime ptoqpq(p, n)= { local(x, y, q); for(q=6, n, if(q%2, if(!isprime(q), y=p^q+q; if(ispseudoprime(y), print(q", "y", ")) ) ) ) }
|
|
CROSSREFS
|
Sequence in context: A058505 A133763 A146475 this_sequence A057478 A128687 A146789
Adjacent sequences: A100553 A100554 A100555 this_sequence A100557 A100558 A100559
|
|
KEYWORD
|
more,nonn
|
|
AUTHOR
|
Cino Hilliard (hillcino368(AT)gmail.com), Jan 12 2005
|
|
EXTENSIONS
|
One more term from Ryan Propper (rpropper(AT)stanford.edu), Jul 21 2006
|
|
|
Search completed in 0.002 seconds
|