login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A344642 Numbers that are the sum of four fifth powers in exactly one way. 6

%I #6 Jul 31 2021 19:38:16

%S 4,35,66,97,128,246,277,308,339,488,519,550,730,761,972,1027,1058,

%T 1089,1120,1269,1300,1331,1511,1542,1753,2050,2081,2112,2292,2323,

%U 2534,3073,3104,3128,3159,3190,3221,3315,3370,3401,3432,3612,3643,3854,4096,4151,4182,4213,4393,4424,4635,5174,5205,5416,6197,6252

%N Numbers that are the sum of four fifth powers in exactly one way.

%C Differs from A003349 at term 270 because 51445 = 4^5 + 8^5 + 8^5 + 8^5 = 6^5 + 7^5 + 7^5 + 9^5

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

%e 66 is a term because 66 = 1^5 + 1^5 + 2^5 + 2^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 == 1])

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

%o print(rets[x])

%Y Cf. A003349, A344189, A344641, A344643, A344645.

%K nonn

%O 1,1

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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 13 11:14 EDT 2024. Contains 375130 sequences. (Running on oeis4.)