A300568 Numbers z such that z^8 = x^6 + y^7 for some integers x, y >= 1.
47775744, 22143375000, 23328000000
Offset: 1
Examples
a(1) = 47775744 = 2^16*3^6 is in the sequence because for this (2^16*3^6)^8 =: z^8 = (12*z)^7 + (288*z)^6 = (2^18*3^7)^7 + (2^21*3^8)^6. a(2) = 22143375000 and a(3) = 23328000000 are in the sequence because for these z, we have z^8 = (30*z)^7 + x^6 with x = 1350*z resp. x = 1800*z.
Crossrefs
Programs
-
PARI
is(z)=for(y=1,sqrtnint(-1+z=z^8,7),ispower(z-y^7,6)&&return(y)) \\ returns the y-value (cf. A303268) if z is in this sequence, 0 else. /* Code below for illustration only, not guaranteed to give a complete list. */ S=[]; N=1e5; forstep(b=1,99,1/2, forstep(a=1,N,1/2, issquare(b^14/4+a^6,&r)&& !frac(z=b^7/2+r)&& !print("\n*** "z)&& S=setunion(S,[z])); print1([b])); S
Comments