A216181
Numbers n such that (11^n - 4^n)/7 is prime.
Original entry on oeis.org
3, 5, 11, 17, 71, 89, 827, 22307, 45893, 63521
Offset: 1
Cf.
A004063,
A028491,
A057468,
A059801,
A121877,
A128024,
A128025,
A128026,
A128027,
A128028,
A128029,
A128030,
A128031,
A128032,
A210506.
-
Select[Prime[Range[1, 100000]], PrimeQ[(11^# - 4^#)/7]&]
-
is(n)=ispseudoprime((11^n-4^n)/7) \\ Charles R Greathouse IV, Feb 20 2017
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
A062583
Numbers k such that 17^k - 16^k is prime.
Original entry on oeis.org
5, 7, 79, 523, 571, 2837
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.
A129736
Primes of the form 4^k - 3^k.
Original entry on oeis.org
7, 37, 14197, 17050729021, 332306984815842876487217260305275077
Offset: 1
- Muniru A Asiru, Table of n, a(n) for n = 1..13
- Bogley, William A.; Williams, Gerald Efficient finite groups arising in the study of relative asphericity. Math. Z. 284, No. 1-2, 507-535 (2016).
- G. Everest et al., Primes generated by recurrence sequences, Amer. Math. Monthly, 114 (No. 5, 2007), 417-431.
- K. Zsigmondy, Zur Theorie der Potenzreste, Monatsh. Math., 3 (1892), 265-284.
-
Filtered(List([1..100], n -> 4^n-3^n), IsPrime); # Muniru A Asiru, Feb 09 2018
-
[a: n in [0..300] | IsPrime(a) where a is 4^n-3^n]; // Vincenzo Librandi, Nov 23 2010
-
select(isprime, [seq(4^n - 3^n, n=0..100)]); # Muniru A Asiru, Feb 09 2018
-
fQ[n_] := If[PrimeQ[4^n - 3^n], 4^n - 3^n, Nothing]; Array[fQ, 300] (* Robert G. Wilson v, Feb 12 2018 *)
-
lista(nn) = for(k=1, nn, if(isprime(p=4^k-3^k), print1(p", "))) \\ Altug Alkan, Mar 03 2018
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
Comments