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.

A003395 Numbers that are the sum of 6 positive 9th powers.

Original entry on oeis.org

6, 517, 1028, 1539, 2050, 2561, 3072, 19688, 20199, 20710, 21221, 21732, 22243, 39370, 39881, 40392, 40903, 41414, 59052, 59563, 60074, 60585, 78734, 79245, 79756, 98416, 98927, 118098, 262149, 262660, 263171, 263682, 264193, 264704, 281831, 282342, 282853, 283364, 283875
Offset: 1

Views

Author

Keywords

Examples

			From _David A. Corneth_, Aug 03 2020: (Start)
205066567 is in the sequence as 205066567 = 4^9 + 6^9 + 6^9 + 6^9 + 7^9 + 8^9.
565898075 is in the sequence as 565898075 = 1^9 + 5^9 + 5^9 + 7^9 + 8^9 + 9^9.
1508481311 is in the sequence as 1508481311 = 1^9 + 7^9 + 7^9 + 7^9 + 9^9 + 10^9. (End)
		

Crossrefs

Cf. A001017 (ninth powers).

Programs

  • Mathematica
    With[{nn=4},Select[Total/@Tuples[Range[nn]^9,6]//Union,#<(nn+1)^9+5&]] (* Harvey P. Dale, Apr 28 2018 *)