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!)
A345845 Numbers that are the sum of nine fourth powers in exactly three ways. 8
519, 534, 599, 774, 1143, 1364, 1539, 1604, 1619, 1814, 2579, 2644, 2659, 2679, 2694, 2709, 2724, 2739, 2754, 2759, 2774, 2789, 2819, 2834, 2839, 2869, 2884, 2899, 2994, 2999, 3079, 3109, 3124, 3139, 3303, 3318, 3333, 3334, 3363, 3364, 3379, 3383, 3398, 3463 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Differs from A345587 at term 26 because 285.
LINKS
EXAMPLE
534 is a term because 534 = 1^4 + 1^4 + 1^4 + 1^4 + 1^4 + 1^4 + 2^4 + 4^4 + 4^4 = 1^4 + 1^4 + 1^4 + 2^4 + 2^4 + 3^4 + 3^4 + 3^4 + 4^4 = 2^4 + 2^4 + 2^4 + 3^4 + 3^4 + 3^4 + 3^4 + 3^4 + 3^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 == 3])
for x in range(len(rets)):
print(rets[x])
CROSSREFS
Sequence in context: A293085 A173791 A345587 * A051983 A250768 A043626
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 April 27 20:03 EDT 2024. Contains 372020 sequences. (Running on oeis4.)