login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A273554 Numbers n such that n is the sum of two nonzero squares while n^2 is the sum of two positive cubes. 0
32, 98, 500, 648, 1225, 1261, 2048, 2888, 4000, 4225, 6272, 6292, 6877, 8281, 8424, 8788, 9800, 10088, 10125, 12250, 14792, 19652, 23328, 27378, 32000, 32193, 33124, 33489, 33800, 35113, 37544, 39546, 41472, 47961, 50336, 50813, 55016, 62500, 66248, 67392, 70304, 71442 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
In other words, values of a^2 + b^2 such that (a^2 + b^2)^2 is of the form x^3 + y^3 where a, b, x, y > 0.
LINKS
EXAMPLE
1261 is a term because 1261 = 6^2 + 35^2 and 1261^2 = 57^3 + 112^3.
MATHEMATICA
nR[n_] := (SquaresR[2, n] + Plus @@ Pick[{-4, 4}, IntegerQ /@ Sqrt[{n, n/2}]])/8; nC[n_] := Length@ IntegerPartitions[n, {2}, Range[n^(1/3)]^3]; Select[ Range[10^4], nR[#] > 0 && nC[#^2] > 0 &] (* Giovanni Resta, May 25 2016 *)
PROG
(PARI) isA003325(n) = for(k=1, sqrtnint(n\2, 3), ispower(n-k^3, 3) && return(1));
isA000404(n) = for( i=1, #n=factor(n)~%4, n[1, i]==3 && n[2, i]%2 && return); n && ( vecmin(n[1, ])==1 || (n[1, 1]==2 && n[2, 1]%2));
lista(nn) = for(n=1, nn, if(isA000404(n) && isA003325(n^2), print1(n, ", ")));
CROSSREFS
Sequence in context: A190176 A198070 A197904 * A218901 A192293 A188862
KEYWORD
nonn,easy
AUTHOR
Altug Alkan, May 25 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 8 17:32 EDT 2024. Contains 372340 sequences. (Running on oeis4.)