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!)
A345864 Numbers that are the sum of five fifth powers in six or more ways. 3

%I #13 May 10 2024 08:50:25

%S 288203194368,2784485221024,6022068333568,9222502219776,9670153077344,

%T 10918228000032,15441787364576

%N Numbers that are the sum of five fifth powers in six or more ways.

%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, 1000)]

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

%o tot = sum(pos)

%o keep[tot] += 1

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

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

%o print(rets[x])

%Y Cf. A344940, A345720, A345863.

%K nonn,more

%O 1,1

%A _David Consiglio, Jr._, Jun 27 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 15:48 EDT 2024. Contains 375142 sequences. (Running on oeis4.)