A291826 Numbers k such that k^5 is sum of 2 nonzero 6th powers.
32, 2048, 23328, 131072, 500000, 1492992, 3764768, 8388608, 17006112, 32000000, 56689952, 95551488, 154457888, 240945152, 364500000, 536870912, 772402208, 1088391168, 1160290625, 1505468192, 2048000000, 2744515872, 3628156928, 4737148448, 6115295232
Offset: 1
Keywords
Examples
32^5 = 16^6 + 16^6, so 32 is in the sequence. 1160290625^5 = 17850625^6 + 35701250^6, so 1160290625 is in the sequence.
Programs
-
Mathematica
lst={};Do[If[IntegerQ[(n^5-a^6)^(1/6)],AppendTo[lst,n]],{n,7*10^9},{a,(n^5/2)^(1/6)}]; lst
Comments