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”).

A174267
Primes p such that 5^p - 4 is also prime.
0
OFFSET
1,1
COMMENTS
If it exists, a(4) > 48091. - J.W.L. (Jan) Eerland, Nov 13 2022
If it exists, a(4) > 2*10^5 (cf. comment by Tyler NeSmith in A059613). - Michael S. Branicky, Aug 17 2024
FORMULA
A000040 INTERSECT A059613. - R. J. Mathar, Apr 15 2010
EXAMPLE
For p=5, 5^5-4=3121; p=7, 5^7-4=78121; p=47, 5^47-4= 710542735760100185871124267578121
PROG
(Magma) [p: p in PrimesUpTo(3500) | IsPrime(5^p-4)];
(PARI) is(n)=isprime(n) && isprime(5^n-4) \\ Charles R Greathouse IV, Sep 06 2016
CROSSREFS
Sequence in context: A090520 A066219 A278618 * A306649 A075830 A058313
KEYWORD
nonn,more,bref
AUTHOR
Vincenzo Librandi, Mar 14 2010
STATUS
approved