login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Numbers that are the sum of four fifth powers in two or more ways.
7

%I #6 Jul 31 2021 17:02:43

%S 51445,876733,1646240,3558289,4062500,5687000,7962869,8227494,9792364,

%T 9924675,10908544,12501135,15249850,18317994,18804544,20611151,

%U 20983875,21297837,23944908,24201342,24598407,27806867,28055456,29480343,31584102,32557875,32814683,35469555,40882844,45177175

%N Numbers that are the sum of four fifth powers in two or more ways.

%H David Consiglio, Jr., <a href="/A344644/b344644.txt">Table of n, a(n) for n = 1..20000</a>

%e 1646240 is a term because 1646240 = 9^5 + 15^5 + 15^5 + 15^5 = 11^5 + 13^5 + 13^5 + 17^5

%o (Python)

%o from itertools import combinations_with_replacement as cwr

%o from collections import defaultdict

%o keep = defaultdict(lambda: 0)

%o power_terms = [x**5 for x in range(1, 500)]

%o for pos in cwr(power_terms, 4):

%o tot = sum(pos)

%o keep[tot] += 1

%o rets = sorted([k for k, v in keep.items() if v >= 2])

%o for x in range(len(rets)):

%o print(rets[x])

%Y Cf. A003349, A309763, A342685, A344645, A345010, A345337.

%K nonn

%O 1,1

%A _David Consiglio, Jr._, May 25 2021