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.

A004817 Numbers that are the sum of 6 positive 11th powers.

Original entry on oeis.org

6, 2053, 4100, 6147, 8194, 10241, 12288, 177152, 179199, 181246, 183293, 185340, 187387, 354298, 356345, 358392, 360439, 362486, 531444, 533491, 535538, 537585, 708590, 710637, 712684, 885736, 887783, 1062882, 4194309, 4196356, 4198403, 4200450, 4202497, 4204544, 4371455
Offset: 1

Views

Author

Keywords

Examples

			4817
From _David A. Corneth_, Aug 04 2020: (Start)
8953440236 is in the sequence as 8953440236 = 3^11 + 3^11 + 3^11 + 3^11 + 6^11 + 8^11.
64837279358 is in the sequence as 64837279358 = 3^11 + 5^11 + 5^11 + 7^11 + 9^11 + 9^11.
131385255963 is in the sequence as 131385255963 = 1^11 + 1^11 + 2^11 + 4^11 + 9^11 + 10^11. (End)
		

Crossrefs

Cf. A008455 (eleventh powers).

Programs

  • Mathematica
    With[{nn=5},Select[Union[Total/@Tuples[Range[nn]^11,{6}]],#<=nn^11+5&]] (* Harvey P. Dale, Jun 30 2020 *)