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!)
A345789 Numbers that are the sum of eight cubes in exactly seven ways. 7
902, 908, 921, 938, 958, 963, 982, 991, 996, 1003, 1008, 1010, 1017, 1019, 1028, 1029, 1033, 1047, 1055, 1058, 1061, 1062, 1070, 1087, 1091, 1094, 1096, 1097, 1104, 1108, 1111, 1113, 1115, 1116, 1118, 1120, 1122, 1123, 1127, 1134, 1141, 1143, 1145, 1152, 1153 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Differs from A345537 at term 7 because 970 = 1^3 + 1^3 + 1^3 + 1^3 + 4^3 + 6^3 + 7^3 + 7^3 = 1^3 + 1^3 + 2^3 + 2^3 + 2^3 + 6^3 + 6^3 + 8^3 = 1^3 + 1^3 + 5^3 + 5^3 + 5^3 + 5^3 + 5^3 + 7^3 = 1^3 + 2^3 + 2^3 + 2^3 + 3^3 + 4^3 + 5^3 + 9^3 = 1^3 + 2^3 + 3^3 + 5^3 + 5^3 + 5^3 + 6^3 + 7^3 = 1^3 + 3^3 + 4^3 + 4^3 + 4^3 + 4^3 + 7^3 + 7^3 = 2^3 + 2^3 + 3^3 + 3^3 + 5^3 + 6^3 + 6^3 + 7^3 = 2^3 + 2^3 + 4^3 + 4^3 + 4^3 + 5^3 + 5^3 + 8^3.
Likely finite.
LINKS
EXAMPLE
908 is a term because 908 = 1^3 + 1^3 + 2^3 + 2^3 + 2^3 + 3^3 + 6^3 + 7^3 = 1^3 + 1^3 + 2^3 + 4^3 + 4^3 + 5^3 + 5^3 + 5^3 = 1^3 + 2^3 + 2^3 + 3^3 + 5^3 + 5^3 + 5^3 + 5^3 = 1^3 + 3^3 + 3^3 + 3^3 + 3^3 + 4^3 + 4^3 + 7^3 = 2^3 + 2^3 + 3^3 + 3^3 + 3^3 + 4^3 + 6^3 + 6^3 = 2^3 + 3^3 + 3^3 + 3^3 + 3^3 + 3^3 + 5^3 + 7^3 = 3^3 + 3^3 + 3^3 + 4^3 + 4^3 + 4^3 + 4^3 + 5^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, 8):
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: A268585 A224611 A345537 * A031528 A158406 A323143
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 July 31 07:33 EDT 2024. Contains 374774 sequences. (Running on oeis4.)