A100274 Primes of the form a^5 + b^4 with a>0.
2, 17, 113, 257, 499, 1297, 4339, 4421, 10177, 10243, 16823, 20903, 65537, 91297, 114641, 160001, 160243, 176807, 181787, 234499, 251063, 251233, 266027, 331777, 348583, 371549, 409709, 528673, 614657, 759631, 763471, 807281, 824911, 826807
Offset: 1
Keywords
Links
- Chai Wah Wu, Table of n, a(n) for n = 1..10000
Crossrefs
Cf. A100294 (numbers of the form a^5 + b^4).
Programs
-
Mathematica
lst={}; Do[p=a^5+b^4; If[PrimeQ[p], AppendTo[lst, p]], {a, 16}, {b, 32}]; Union[lst]