A051386 Numbers whose 4th power is the sum of two positive cubes.
2, 9, 16, 28, 35, 54, 65, 72, 91, 126, 128, 133, 134, 152, 182, 183, 189, 201, 217, 219, 224, 243, 250, 273, 278, 280, 309, 341, 344, 351, 370, 399, 407, 422, 432, 453, 468, 497, 513, 520, 539, 559, 576, 579, 637, 651, 658, 686, 728, 730, 737, 756, 793, 854
Offset: 1
Keywords
Examples
134^4 = 469^3 + 603^3.
Links
- Chai Wah Wu, Table of n, a(n) for n = 1..10000
Programs
-
Maple
N:= 1000: # to get all terms <= N Cubes:= {seq(x^3,x=1..floor(N^(4/3)))}: select(n -> nops(map(t -> n^4-t, Cubes) intersect Cubes)>0, [$1..N]); # Robert Israel, Jun 01 2015
Comments