OFFSET
0,1
COMMENTS
Conjecture: If {a,b,c} is among the multisets {2,2,p} (p is an odd prime or a product of primes congruent to 1 modulo 4) and {2,3,k} (k = 3,4,5), then for any integer m there are (infinitely many) triples (x,y,z) of positive integers such that m = x^a + y^b - z^c.
This implies that a(n) > 0 for all n. Also, it includes the conjectures in A266152, A266212 and A266230 as special cases.
For any odd prime p == 3 (mod 4) and odd integer n > 1, I have proved that x^{pn} + (2p)^p with x an integer is never a sum of two squares. - Zhi-Wei Sun, Jan 06 2016
LINKS
Zhi-Wei Sun, Table of n, a(n) for n = 0..2315
Zhi-Wei Sun, New conjectures on representations of integers (I), Nanjing Univ. J. Math. Biquarterly 34 (2017), no.2, 97-120. (Cf. Section 5.)
MAPLE
a(0) = 3 since 0 + 3^2 = 2^3 + 1^5.
a(2) = 83 since 2 + 83^2 = 19^3 + 2^5.
a(42) = 32834 since 42 + 32834^2 = 781^3 + 57^5.
a(445) = 903402 since 445 + 903402^2 = 9345^3 + 34^5.
a(510) = 10875037 since 510 + 10875037^2 = 40712^3 + 551^5.
MATHEMATICA
CQ[n_]:=CQ[n]=IntegerQ[n^(1/3)]
Do[x=1; Label[bb]; Do[If[CQ[n+x^2-y^5], Print[n, " ", x]; Goto[aa]], {y, 1, (n+x^2-1)^(1/5)}]; x=x+1; Goto[bb]; Label[aa]; Continue, {n, 0, 70}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Zhi-Wei Sun, Dec 26 2015
STATUS
approved