A123295 Sum of 14 positive 5th powers.
14, 45, 76, 107, 138, 169, 200, 231, 256, 262, 287, 293, 318, 324, 349, 355, 380, 386, 411, 417, 442, 448, 473, 498, 504, 529, 535, 560, 566, 591, 597, 622, 628, 653, 659, 684, 715, 740, 746, 771, 777, 802, 808, 833, 839, 864, 870, 895, 926, 957, 982, 988
Offset: 1
Examples
a(1) = 14 = 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5. a(2) = 45 = 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 2^5. a(9) = 256 = 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 3^5. a(11) = 287 = 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 2^5 + 3^5
Links
- Giovanni Resta, Table of n, a(n) for n = 1..10000
- Eric Weisstein's World of Mathematics, Waring's Problem.
Crossrefs
Programs
-
Mathematica
up = 1000; q = Range[up^(1/5)]^5; a ={0}; Do[b = Select[ Union@ Flatten@ Table[e + a, {e, q}], # <= up &]; a=b, {k, 14}]; a (* Giovanni Resta, Jun 12 2016 *)
Formula
Extensions
5 missing terms and more terms from Giovanni Resta, Jun 12 2016
Comments