A062573
Numbers k such that 7^k - 6^k is prime.
Original entry on oeis.org
2, 3, 7, 29, 41, 67, 1327, 1399, 2027, 69371, 86689, 355039
Offset: 1
7^2 - 6^2 = 49 - 36 = 13, which is prime, so 2 is in the sequence.
7^3 - 6^3 = 343 - 216 = 127, which is prime, so 3 is in the sequence.
Two more terms (69371 and 86689) found by Predrag Minovic in 2004 corresponding to probable primes with 58626 and 73261 digits. -
Jean-Louis Charton, Oct 06 2010
New term 355039 found by
Jean-Louis Charton in May 2011 corresponding to a probable prime with 300043 digits.
A062574
Numbers k such that 8^k - 7^k is prime or a strong pseudoprime.
Original entry on oeis.org
7, 11, 17, 29, 31, 79, 113, 131, 139, 4357, 44029, 76213, 83663, 173687, 336419, 615997
Offset: 1
New term 615997 found by Jean-Louis Charton corresponding to a probable prime with 556301 digits.
Jean-Louis Charton, Sep 02 2009
A062585
Numbers k such that 19^k - 18^k is prime.
Original entry on oeis.org
2, 1607, 1873, 10957
Offset: 1
A062592
Numbers k such that 26^k - 25^k is prime or a strong pseudoprime.
Original entry on oeis.org
3, 7, 97, 109, 401, 431
Offset: 1
A121091
Smallest nexus prime of the form n^p - (n-1)^p, where p is an odd prime.
Original entry on oeis.org
7, 19, 37, 61, 4651, 127, 1273609, 2685817, 271, 331, 397, 6431804812640900941, 547, 631, 5613125740675652943160572913465695837595324940170321, 371281, 919
Offset: 2
Cf.
A125713 = Smallest odd prime p such that (n+1)^p - n^p is prime. Cf.
A065913 = Smallest prime of form (n+1)^k - n^k. Cf.
A058013 = Smallest prime p such that (n+1)^p - n^p is prime. Cf.
A047845,
A014076.
A214655
Numbers n such that 25^n - 24^n is prime or a strong pseudoprime.
Original entry on oeis.org
3, 5, 29, 54799
Offset: 1
A214658
Numbers n such that 24^n - 23^n is prime or a strong pseudoprime.
Original entry on oeis.org
2, 3, 31, 40519, 51061
Offset: 1
A062578
Numbers k such that 12^k - 11^k is prime.
Original entry on oeis.org
2, 3, 7, 89, 101, 293, 4463, 70067
Offset: 1
A147667
Primes of the form 5^k - 4^k.
Original entry on oeis.org
61, 1136791005963704961126617632861, 173472015290681763212224222187425603741981, 31861838222649045530727106406255616308752331078816472270207782250106896363274089867800367051529351065966102374800998198276889145001421
Offset: 1
5^3 - 4^3 = 125 - 64 = 61.
-
Filtered(List([1..200],n->5^n - 4^n),IsPrime); # Muniru A Asiru, Mar 04 2018
-
select(isprime, [seq(5^n - 4^n, n=0..200)]); # Muniru A Asiru, Mar 04 2018
-
lst={};Do[p=5^n-4^n;If[PrimeQ[p],AppendTo[lst,p]],{n,6!}];lst
Select[Table[5^n-4^n,{n,300}],PrimeQ] (* Harvey P. Dale, May 14 2022 *)
A188051
Numbers k such that 18^k - 17^k is prime, or a strong pseudoprime.
Original entry on oeis.org
3, 13, 71, 14533, 26641, 48179
Offset: 1
Comments