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!)
A344354 Numbers that are the sum of five fourth powers in four or more ways. 8

%I #12 Jul 31 2021 18:13:20

%S 20995,21235,31250,41474,43235,43250,43315,43490,43859,45139,46290,

%T 47570,51939,53234,53299,54994,56274,57379,57410,57779,59329,59779,

%U 63970,67010,67859,68035,68290,71795,71954,73730,73954,75714,75794,77890,82099,84499,86275,86450,87730,92500,93394,93474,93859

%N Numbers that are the sum of five fourth powers in four or more ways.

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

%e 31250 is a term of this sequence because 31250 = 2^4 + 2^4 + 4^4 + 7^4 + 13^4 = 2^4 + 3^4 + 6^4 + 6^4 + 13^4 = 4^4 + 6^4 + 7^4 + 9^4 + 12^4 = 5^4 + 5^4 + 10^4 + 10^4 + 10^4.

%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**4 for x in range(1, 50)]

%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 >= 4])

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

%o print(rets[x])

%Y Cf. A344034, A344243, A344352, A344355, A344358, A344518, A345561.

%K nonn

%O 1,1

%A _David Consiglio, Jr._, May 15 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 April 19 15:34 EDT 2024. Contains 371794 sequences. (Running on oeis4.)