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!)
A345180 Numbers that are the sum of five third powers in seven or more ways. 8
4392, 4472, 4544, 4600, 4915, 4957, 5076, 5113, 5120, 5132, 5139, 5165, 5174, 5256, 5321, 5347, 5354, 5384, 5391, 5410, 5445, 5474, 5481, 5507, 5543, 5617, 5624, 5643, 5678, 5715, 5741, 5760, 5769, 5797, 5832, 5834, 5860, 5895, 5914, 5923, 5984, 5986, 6049 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
David Consiglio, Jr., Table of n, a(n) for n = 1..10000
EXAMPLE
4472 is a term because 4472 = 1^3 + 4^3 + 4^3 + 4^3 + 15^3 = 2^3 + 2^3 + 9^3 + 11^3 + 11^3 = 2^3 + 3^3 + 4^3 + 5^3 + 15^3 = 2^3 + 3^3 + 7^3 + 11^3 + 12^3 = 3^3 + 3^3 + 6^3 + 10^3 + 13^3 = 3^3 + 4^3 + 5^3 + 8^3 + 14^3 = 5^3 + 5^3 + 7^3 + 10^3 + 12^3.
PROG
(Python)
from itertools import combinations_with_replacement as cwr
from collections import defaultdict
keep = defaultdict(lambda: 0)
power_terms = [x**3 for x in range(1, 1000)]
for pos in cwr(power_terms, 5):
tot = sum(pos)
keep[tot] += 1
rets = sorted([k for k, v in keep.items() if v >= 7])
for x in range(len(rets)):
print(rets[x])
CROSSREFS
Sequence in context: A252858 A027506 A343828 * A345183 A345184 A152931
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:06 EDT 2024. Contains 371964 sequences. (Running on oeis4.)