A178444 Markov numbers that are prime.
2, 5, 13, 29, 89, 233, 433, 1597, 2897, 5741, 7561, 28657, 33461, 43261, 96557, 426389, 514229, 1686049, 2922509, 3276509, 94418953, 321534781, 433494437, 780291637, 1405695061, 2971215073, 19577194573, 25209506681, 44208781349, 44560482149, 128367472469
Offset: 1
Keywords
Links
- T. D. Noe, Table of n, a(n) for n = 1..300
- Jean Bourgain, Alex Gamburd, and Peter Sarnak, Markoff Triples and Strong Approximation, arXiv:1505.06411 [math.NT], 2015.
- Yasuaki Gyoda and Shuhei Maruyama, Uniqueness theorem of generalized Markov numbers that are prime powers, arXiv:2312.07329 [math.NT], 2023. See Appendix A.
- Kristin DeVleming and Nikita Singh, Rational unicuspidal plane curves of low degree, arXiv:2311.15922 [math.AG], 2023. See p. 14.
Programs
-
Mathematica
m = {1}; Do[x = m[[i]]; y = m[[j]]; a = (3*x*y + Sqrt[ -4*x^2 - 4*y^2 + 9*x^2*y^2])/2; b = (3*x*y + Sqrt[ -4*x^2 - 4*y^2 + 9*x^2*y^2])/2; If[ IntegerQ[a], m = Union[ Join[m, {a}]]]; If[ IntegerQ[b], m = Union[ Join[m, {b}]]], {n, 8}, {i, Length[m]}, {j, i}]; Take[m, 40] (* Robert G. Wilson v, Oct 05 2005, taken from A002559 *); Select[m, PrimeQ]
Comments