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

%I #6 Jul 31 2021 22:32:41

%S 231,238,245,250,259,271,276,278,280,285,287,290,292,294,297,299,301,

%T 302,309,311,313,315,316,318,322,327,334,335,337,339,341,346,350,353,

%U 357,362,365,379,386,387,388,391,393,394,395,397,398,405,412,418,420,421

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

%C Differs from A345542 at term 1 because 224 = 1^3 + 1^3 + 1^3 + 1^3 + 1^3 + 1^3 + 1^3 + 1^3 + 6^3 = 1^3 + 1^3 + 1^3 + 1^3 + 1^3 + 3^3 + 4^3 + 4^3 + 4^3 = 1^3 + 1^3 + 1^3 + 2^3 + 2^3 + 2^3 + 2^3 + 4^3 + 5^3 = 2^3 + 3^3 + 3^3 + 3^3 + 3^3 + 3^3 + 3^3 + 3^3 + 3^3.

%C Likely finite.

%H Sean A. Irvine, <a href="/A345795/b345795.txt">Table of n, a(n) for n = 1..136</a>

%e 231 is a term because 231 = 1^3 + 1^3 + 1^3 + 1^3 + 1^3 + 1^3 + 1^3 + 2^3 + 5^3 = 1^3 + 1^3 + 1^3 + 1^3 + 2^3 + 3^3 + 3^3 + 3^3 + 3^3 = 1^3 + 1^3 + 2^3 + 2^3 + 2^3 + 2^3 + 2^3 + 3^3 + 4^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, 9):

%o tot = sum(pos)

%o keep[tot] += 1

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

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

%o print(rets[x])

%Y Cf. A345542, A345785, A345794, A345796, A345805, A345845.

%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 July 31 10:28 EDT 2024. Contains 374779 sequences. (Running on oeis4.)