|
| |
|
|
A176680
|
|
Sequence of primes that are both of the type 2^n-3 and 3*m-2.
|
|
0
|
| |
|
|
|
OFFSET
|
1,1
|
|
|
COMMENTS
|
Solve[2^n - 3 == 3*m - 4, m];
gives m=(1+2^n)/3.
When that m is an Integer and 2^n-3 is Prime both conditions are met
|
|
|
LINKS
|
Table of n, a(n) for n=1..4.
|
|
|
MATHEMATICA
|
Flatten[Table[If[IntegerQ[Rationalize[N[ (1 + 2^n)/ 3]]] && PrimeQ[2^n - 3], 2^n - 3, {}], {n, 2, 100000}]]
|
|
|
CROSSREFS
|
Sequence in context: A198054 A202758 A197962 * A069142 A144994 A072880
Adjacent sequences: A176677 A176678 A176679 * A176681 A176682 A176683
|
|
|
KEYWORD
|
nonn,uned
|
|
|
AUTHOR
|
Roger L. Bagula, Apr 23 2010
|
|
|
STATUS
|
approved
|
| |
|
|