[go: up one dir, main page]

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!)
A345121 Numbers that are the sum of three third powers in ten or more ways. 6
34012224, 58995000, 69190848, 71319312, 72505152, 92853216, 94118760, 95331816, 119095488, 119409984, 139755888, 147545280, 150506000, 150547032, 157464000, 159874560, 161023680, 161350272, 164186352, 171904032, 175986000, 176175000, 182393856, 184909824 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
34012224 is a term because 34012224 = 35^3 + 215^3 + 287^3 = 38^3 + 152^3 + 311^3 = 40^3 + 113^3 + 318^3 = 44^3 + 245^3 + 266^3 = 71^3 + 113^3 + 317^3 = 99^3 + 191^3 + 295^3 = 101^3 + 226^3 + 276^3 = 117^3 + 185^3 + 295^3 = 161^3 + 215^3 + 269^3 = 172^3 + 213^3 + 266^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, 3):
tot = sum(pos)
keep[tot] += 1
rets = sorted([k for k, v in keep.items() if v >= 10])
for x in range(len(rets)):
print(rets[x])
CROSSREFS
Sequence in context: A178106 A205943 A232636 * A345122 A363295 A172687
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Sean A. Irvine, Jun 08 2021
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 August 27 19:18 EDT 2024. Contains 375471 sequences. (Running on oeis4.)