A255390 Primes of the form 173^k - 172^k.
89269, 184438202074309, 379889466040169687349246148321558634248221737128245658182879616485078366262882828905566134219669
Offset: 1
Keywords
Links
- Michael P. May, On the Existence and Frequency Distribution of the Shell Primes, arXiv preprint arXiv:1510.01028 [math.CO], 2015.
Crossrefs
Cf. A254298.
Programs
-
Magma
[a: n in [0..200] | IsPrime(a) where a is (173^n-172^n)]; // Vincenzo Librandi, Feb 22 2015
-
Mathematica
Select[Table[173^n - 172^n, {n, 1000}], PrimeQ] (* Vincenzo Librandi, Feb 22 2015 *)
-
PARI
select(m->ispseudoprime(m), vector(100, k, 173^k-172^k)) \\ Jinyuan Wang, May 30 2020
Comments