[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Revision History for A345796 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing all changes.
Numbers that are the sum of nine cubes in exactly four ways.
(history; published version)
#6 by Sean A. Irvine at Sat Jul 31 22:32:44 EDT 2021
STATUS

editing

approved

#5 by Sean A. Irvine at Sat Jul 31 22:31:07 EDT 2021
STATUS

approved

editing

#4 by Sean A. Irvine at Sun Jun 27 05:45:38 EDT 2021
STATUS

editing

approved

#3 by Sean A. Irvine at Sun Jun 27 05:45:35 EDT 2021
COMMENTS

Likely finite.

LINKS

Sean A. Irvine, <a href="/A345796/b345796.txt">Table of n, a(n) for n = 1..124</a>

#2 by Sean A. Irvine at Sun Jun 27 05:33:01 EDT 2021
NAME

allocated for Sean A. Irvine

Numbers that are the sum of nine cubes in exactly four ways.

DATA

224, 257, 264, 283, 320, 348, 355, 372, 374, 376, 381, 383, 390, 400, 402, 407, 411, 414, 416, 442, 450, 453, 454, 461, 474, 476, 481, 486, 488, 500, 503, 509, 510, 514, 519, 528, 529, 537, 542, 543, 544, 545, 548, 550, 552, 554, 555, 557, 564, 572, 573, 574

OFFSET

1,1

COMMENTS

Differs from A345543 at term 17 because 409 = 1^3 + 1^3 + 1^3 + 1^3 + 3^3 + 4^3 + 4^3 + 5^3 + 5^3 = 1^3 + 1^3 + 1^3 + 2^3 + 3^3 + 3^3 + 4^3 + 4^3 + 6^3 = 1^3 + 1^3 + 2^3 + 2^3 + 2^3 + 2^3 + 5^3 + 5^3 + 5^3 = 1^3 + 2^3 + 2^3 + 2^3 + 2^3 + 2^3 + 3^3 + 5^3 + 6^3 = 2^3 + 3^3 + 3^3 + 3^3 + 4^3 + 4^3 + 4^3 + 4^3 + 4^3.

EXAMPLE

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

tot = sum(pos)

keep[tot] += 1

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

for x in range(len(rets)):

print(rets[x])

KEYWORD

allocated

nonn,new

AUTHOR

David Consiglio, Jr., Jun 26 2021

STATUS

approved

editing

#1 by Sean A. Irvine at Sat Jun 26 16:42:55 EDT 2021
NAME

allocated for Sean A. Irvine

KEYWORD

allocated

STATUS

approved