cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A123295 Sum of 14 positive 5th powers.

Original entry on oeis.org

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

Views

Author

Jonathan Vos Post, Sep 24 2006

Keywords

Comments

Up to 417 = 13*(2^5) + 1 this sequence is identical to x+2 for x in A003357 Sum of 12 positive 5th powers. Primes in this sequence (107, 293, 349, 653, ...) are A123300. As proved by J.-R. Chen in 1964, g(5) = 37, so every positive integer can be written as the sum of no more than 37 positive 5th powers. G(5) <= 17, bounding the least integer G(5) such that every positive integer beyond a certain point (i.e., all but a finite number) is the sum of G(5) 5th powers.

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
		

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