A272384 Primes p == 1 (mod 3) for which A261029(22*p) = 2.
7, 13, 19, 31, 37, 43, 61, 67, 73, 79, 97, 103, 109, 127, 139, 151, 181, 211, 229, 307, 313, 421
Offset: 1
Links
- Vladimir Shevelev, Representation of positive integers by the form x^3+y^3+z^3-3xyz, arXiv:1508.05748 [math.NT], 2015.
Programs
-
Mathematica
r[n_] := Reduce[0 <= x <= y <= z && z >= x + 1 && n == x^3 + y^3 + z^3 - 3 x y z, {x, y, z}, Integers]; a29[n_] := Which[rn = r[n]; rn === False, 0, rn[[0]] === And, 1, rn[[0]] === Or, Length[rn], True, Print["error ", rn]]; Select[Select[Range[1, 1000, 3], PrimeQ], a29[22 #] == 2&] (* Jean-François Alcover, Nov 21 2018 *)
Extensions
All terms (after author's first terms) were calculated by Peter J. C. Moses, Apr 28 2016
Comments