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!)
A345781 Numbers that are the sum of seven cubes in exactly nine ways. 7

%I #6 Jul 31 2021 22:39:34

%S 1496,1648,1720,1737,1772,1781,1802,1835,1844,1882,1891,1898,1900,

%T 1907,1912,1919,1945,1952,1954,1961,1996,2000,2012,2026,2071,2080,

%U 2098,2107,2110,2115,2116,2132,2134,2136,2139,2150,2152,2168,2178,2185,2187,2195,2205

%N Numbers that are the sum of seven cubes in exactly nine ways.

%C Differs from A345527 at term 3 because 1704 = 1^3 + 1^3 + 1^3 + 3^3 + 6^3 + 9^3 + 9^3 = 1^3 + 1^3 + 1^3 + 4^3 + 5^3 + 8^3 + 10^3 = 1^3 + 1^3 + 2^3 + 2^3 + 7^3 + 7^3 + 10^3 = 1^3 + 1^3 + 3^3 + 4^3 + 4^3 + 6^3 + 11^3 = 1^3 + 2^3 + 4^3 + 6^3 + 7^3 + 7^3 + 9^3 = 2^3 + 2^3 + 2^3 + 2^3 + 5^3 + 6^3 + 11^3 = 2^3 + 2^3 + 3^3 + 5^3 + 8^3 + 8^3 + 8^3 = 3^3 + 3^3 + 3^3 + 4^3 + 6^3 + 7^3 + 10^3 = 3^3 + 3^3 + 4^3 + 4^3 + 4^3 + 9^3 + 9^3 = 3^3 + 6^3 + 6^3 + 6^3 + 7^3 + 7^3 + 7^3.

%C Likely finite.

%H Sean A. Irvine, <a href="/A345781/b345781.txt">Table of n, a(n) for n = 1..338</a>

%e 1648 is a term because 1648 = 1^3 + 1^3 + 1^3 + 2^3 + 4^3 + 7^3 + 9^3 = 1^3 + 1^3 + 1^3 + 3^3 + 4^3 + 4^3 + 10^3 = 1^3 + 1^3 + 2^3 + 3^3 + 3^3 + 5^3 + 10^3 = 1^3 + 1^3 + 3^3 + 4^3 + 5^3 + 7^3 + 8^3 = 1^3 + 2^3 + 2^3 + 5^3 + 6^3 + 6^3 + 8^3 = 1^3 + 3^3 + 3^3 + 4^3 + 4^3 + 6^3 + 9^3 = 2^3 + 3^3 + 3^3 + 3^3 + 5^3 + 6^3 + 9^3 = 2^3 + 3^3 + 3^3 + 3^3 + 3^3 + 8^3 + 8^3 = 3^3 + 3^3 + 3^3 + 5^3 + 5^3 + 7^3 + 7^3.

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

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

%o tot = sum(pos)

%o keep[tot] += 1

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

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

%o print(rets[x])

%Y Cf. A345527, A345771, A345780, A345782, A345791, A345831.

%K nonn

%O 1,1

%A _David Consiglio, Jr._, Jun 26 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 23 13:51 EDT 2024. Contains 371914 sequences. (Running on oeis4.)