[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 A345846 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

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

editing

approved

#5 by Sean A. Irvine at Sat Jul 31 21:26:49 EDT 2021
STATUS

approved

editing

#4 by Sean A. Irvine at Sun Jun 27 17:22:32 EDT 2021
STATUS

editing

approved

#3 by Sean A. Irvine at Sun Jun 27 17:20:26 EDT 2021
LINKS

Sean A. Irvine, <a href="/A345846/b345846.txt">Table of n, a(n) for n = 1..10000</a>

#2 by Sean A. Irvine at Sun Jun 27 17:16:37 EDT 2021
NAME

allocated for Sean A. Irvine

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

DATA

2854, 2919, 2934, 2949, 2964, 3014, 3029, 3094, 3159, 3174, 3204, 3254, 3269, 3429, 3444, 3558, 3573, 3638, 3798, 3813, 3974, 4034, 4134, 4164, 4179, 4182, 4209, 4214, 4274, 4294, 4389, 4439, 4454, 4534, 4614, 4644, 4709, 4773, 4788, 4838, 4884, 4918, 4949

OFFSET

1,1

COMMENTS

Differs from A345588 at term 11 because 3189 = 1^4 + 1^4 + 1^4 + 1^4 + 2^4 + 4^4 + 4^4 + 4^4 + 7^4 = 1^4 + 1^4 + 1^4 + 1^4 + 3^4 + 4^4 + 4^4 + 6^4 + 6^4 = 1^4 + 2^4 + 2^4 + 3^4 + 3^4 + 3^4 + 4^4 + 4^4 + 7^4 = 1^4 + 2^4 + 3^4 + 3^4 + 3^4 + 3^4 + 4^4 + 6^4 + 6^4 = 2^4 + 2^4 + 2^4 + 2^4 + 5^4 + 5^4 + 5^4 + 5^4 + 5^4.

EXAMPLE

2919 is a term because 2919 = 1^4 + 1^4 + 1^4 + 1^4 + 1^4 + 1^4 + 4^4 + 4^4 + 7^4 = 1^4 + 1^4 + 1^4 + 2^4 + 3^4 + 3^4 + 3^4 + 4^4 + 7^4 = 1^4 + 1^4 + 1^4 + 3^4 + 3^4 + 3^4 + 3^4 + 6^4 + 6^4 = 2^4 + 2^4 + 3^4 + 3^4 + 3^4 + 3^4 + 3^4 + 3^4 + 7^4.

PROG

(Python)

from itertools import combinations_with_replacement as cwr

from collections import defaultdict

keep = defaultdict(lambda: 0)

power_terms = [x**4 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