A003347 Numbers that are the sum of 2 positive 5th powers.
2, 33, 64, 244, 275, 486, 1025, 1056, 1267, 2048, 3126, 3157, 3368, 4149, 6250, 7777, 7808, 8019, 8800, 10901, 15552, 16808, 16839, 17050, 17831, 19932, 24583, 32769, 32800, 33011, 33614, 33792, 35893, 40544, 49575, 59050, 59081, 59292, 60073, 62174, 65536, 66825, 75856
Offset: 1
Keywords
Examples
From _David A. Corneth_, Aug 03 2020: (Start) 917552689 is in the sequence as 917552689 = 17^5 + 62^5. 2557575000 is in the sequence as 2557575000 = 45^5 + 75^5. 5828050944 is in the sequence as 5828050944 = 56^5 + 88^5. (End)
Links
- David A. Corneth, Table of n, a(n) for n = 1..10000 (first 1000 terms from T. D. Noe)
- Samuel S. Wagstaff, Jr., Equal Sums of Two Distinct Like Powers, J. Int. Seq., Vol. 25 (2022), Article 22.3.1.
Programs
-
Mathematica
With[{k = 5}, Union@ Map[(#[[1]]^k + #[[2]]^k) &, Tuples[Range[9], {2}]]] (* Michael De Vlieger, Sep 09 2022, after Harvey P. Dale at A004999 *)