login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A127908
Primes of form (3^n + 2^n)/5.
1
7, 463, 35839, 798167678837469920188160718521149336927, 24665899002341798194980052306171212216360861465143461865961807325057879, 5001149050738853423183653309332375420192266379562546200601855155172715420590196078603421469034502777938287
OFFSET
1,1
COMMENTS
Numbers n such that (2^n + 3^n)/5 is prime are listed in A057469 = {3, 7, 11, 83, 149, 223, 599, 647, 1373, 8423, ...}.
FORMULA
a(n) = (2^A057469(n) + 3^A057469(n))/5.
MATHEMATICA
Do[f=(2^n+3^n)/5; If[PrimeQ[f], Print[{n, f}]], {n, 1, 1000}]
Select[Table[(3^n+2^n)/5, {n, 500}], PrimeQ] (* Harvey P. Dale, Aug 07 2019 *)
CROSSREFS
Cf. A057469.
Sequence in context: A196540 A215890 A160374 * A015105 A269550 A238164
KEYWORD
nonn
AUTHOR
Alexander Adamchuk, Feb 05 2007
STATUS
approved