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!)
A345832 Numbers that are the sum of seven fourth powers in exactly ten ways. 7
31251, 44547, 45827, 45892, 47667, 47971, 49572, 51092, 53316, 53476, 54531, 54596, 54756, 57411, 58276, 58660, 59781, 59811, 59827, 59861, 59876, 59892, 61076, 64581, 65876, 65891, 66356, 66596, 66676, 67716, 67876, 68131, 68322, 68772, 69171, 69667, 70116 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Differs from A345576 at term 5 because 45907 = 1^4 + 1^4 + 3^4 + 4^4 + 8^4 + 12^4 + 12^4 = 1^4 + 6^4 + 6^4 + 8^4 + 8^4 + 9^4 + 13^4 = 2^4 + 2^4 + 2^4 + 4^4 + 7^4 + 11^4 + 13^4 = 2^4 + 2^4 + 3^4 + 6^4 + 6^4 + 11^4 + 13^4 = 2^4 + 2^4 + 4^4 + 7^4 + 7^4 + 7^4 + 14^4 = 2^4 + 3^4 + 6^4 + 6^4 + 7^4 + 7^4 + 14^4 = 2^4 + 4^4 + 6^4 + 7^4 + 9^4 + 11^4 + 12^4 = 2^4 + 5^4 + 5^4 + 10^4 + 10^4 + 10^4 + 11^4 = 3^4 + 3^4 + 4^4 + 4^4 + 4^4 + 9^4 + 14^4 = 3^4 + 6^4 + 6^4 + 6^4 + 9^4 + 11^4 + 12^4 = 4^4 + 7^4 + 7^4 + 8^4 + 8^4 + 8^4 + 13^4.
LINKS
EXAMPLE
44547 is a term because 44547 = 1^4 + 2^4 + 2^4 + 2^4 + 6^4 + 11^4 + 13^4 = 1^4 + 2^4 + 2^4 + 6^4 + 7^4 + 7^4 + 14^4 = 1^4 + 2^4 + 6^4 + 6^4 + 9^4 + 11^4 + 12^4 = 1^4 + 6^4 + 7^4 + 8^4 + 8^4 + 8^4 + 13^4 = 2^4 + 2^4 + 8^4 + 9^4 + 9^4 + 9^4 + 12^4 = 2^4 + 4^4 + 6^4 + 6^4 + 9^4 + 9^4 + 13^4 = 2^4 + 4^4 + 7^4 + 7^4 + 8^4 + 11^4 + 12^4 = 3^4 + 3^4 + 4^4 + 4^4 + 7^4 + 12^4 + 12^4 = 3^4 + 6^4 + 6^4 + 7^4 + 8^4 + 11^4 + 12^4 = 4^4 + 4^4 + 8^4 + 8^4 + 9^4 + 11^4 + 11^4.
PROG
(Python)
from itertools import combinations_with_replacement as cwr
from collections import defaultdict
keep = defaultdict(lambda: 0)
power_terms = [x**4 for x in range(1, 1000)]
for pos in cwr(power_terms, 7):
tot = sum(pos)
keep[tot] += 1
rets = sorted([k for k, v in keep.items() if v == 10])
for x in range(len(rets)):
print(rets[x])
CROSSREFS
Sequence in context: A230753 A205419 A345576 * A236891 A177217 A351852
KEYWORD
nonn
AUTHOR
STATUS
approved

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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)