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.

A003374 Numbers that are the sum of 7 positive 7th powers.

This page as a plain text file.
%I A003374 #19 Dec 01 2020 18:02:57
%S A003374 7,134,261,388,515,642,769,896,2193,2320,2447,2574,2701,2828,2955,
%T A003374 4379,4506,4633,4760,4887,5014,6565,6692,6819,6946,7073,8751,8878,
%U A003374 9005,9132,10937,11064,11191,13123,13250,15309,16390,16517,16644,16771,16898,17025,17152,18576
%N A003374 Numbers that are the sum of 7 positive 7th powers.
%H A003374 David A. Corneth, <a href="/A003374/b003374.txt">Table of n, a(n) for n = 1..10000</a>
%e A003374 From _David A. Corneth_, Aug 03 2020: (Start)
%e A003374 2200409 is in the sequence as 2200409 = 3^7 + 3^7 + 3^7 + 3^7 + 4^7 + 5^7 + 8^7.
%e A003374 4122089 is in the sequence as 4122089 = 3^7 + 3^7 + 7^7 + 7^7 + 7^7 + 7^7 + 7^7.
%e A003374 6356992 is in the sequence as 6356992 = 4^7 + 4^7 + 4^7 + 4^7 + 8^7 + 8^7 + 8^7. (End)
%t A003374 M = 21027478; m = M^(1/7) // Ceiling; Reap[
%t A003374 For[a = 1, a <= m, a++, For[b = a, b <= m, b++, For[c = b, c <= m, c++,
%t A003374 For[d = c, d <= m, d++, For[e = d, e <= m, e++, For[f = e, f <= m, f++,
%t A003374 For[g = f, g <= m, g++,
%t A003374 s = a^7 + b^7 + c^7 + d^7 + e^7 + f^7 + g^7;
%t A003374 If[s <= M, Sow[s]]]]]]]]]][[2, 1]] // Union (* _Jean-François Alcover_, Dec 01 2020 *)
%Y A003374 Cf. A001015 (seventh powers).
%Y A003374 Column k=7 of A336725.
%K A003374 nonn,easy
%O A003374 1,1
%A A003374 _N. J. A. Sloane_