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

A163570
Primes p such that p^6-6 is also prime.
2
5, 7, 17, 37, 113, 137, 157, 173, 223, 227, 337, 487, 503, 617, 743, 797, 857, 863, 877, 947, 1103, 1217, 1277, 1453, 1483, 1663, 1693, 1747, 1933, 2557, 2683, 2833, 2837, 2843, 3067, 3167, 3373, 3457, 3583, 3593, 3823, 4013, 4483, 4943, 4987, 5527, 5843
OFFSET
1,1
LINKS
EXAMPLE
5^6-6=15619 = A000040(1821) puts p=5 into the sequence.
7^6-6=117643 = A000040(11098) puts p=7 into the sequence.
MATHEMATICA
lst={}; Do[p=Prime[n]; If[PrimeQ[p^6-6], AppendTo[lst, p]], {n, 2*7!}]; lst
Select[Prime[Range[1000]], PrimeQ[(#^6 - 6)]&] (* Vincenzo Librandi, Apr 15 2013 *)
PROG
(Magma) [p: p in PrimesUpTo(6000) | IsPrime(p^6-6)]; // Vincenzo Librandi, Apr 15 2013
(PARI) for(n=1, 500, m=prime(n); if(isprime(m^6 -6), print1(m, ", "))) \\ G. C. Greubel, Jul 28 2017
CROSSREFS
Sequence in context: A243400 A318568 A239414 * A113282 A323200 A096741
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Comment moved to the examples by R. J. Mathar, Oct 21 2009
STATUS
approved