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”).

A377444
a(n) is the smallest integer k such that the Diophantine equation x^3 + y^3 + z^3 = k^3, where 0 < x <= y <= z has exactly n integer solutions.
1
6, 18, 54, 87, 108, 216, 174, 348, 396, 324, 696, 864, 492, 1080, 984, 1728, 1584, 1296, 2160, 1440, 3312, 3132, 2880, 2592, 4176, 4230, 6624, 3960, 5184, 6264, 4320, 5760, 6480, 7200, 10200, 7920, 9936, 5940, 8640, 12060, 11520, 9900, 14256, 14400, 16560, 14760, 15660, 22140
OFFSET
1,1
COMMENTS
All the terms seem to be multiple of 3.
LINKS
EXAMPLE
a(2)=18, because 18^3 = 9^3 + 12^3 + 15^3 = 2^3 + 12^3 + 16^3 and no integer less than 18 has 2 solutions.
MATHEMATICA
a = Table[SelectFirst[Table[{k, Length@Select[PowersRepresentations[k^3, 3, 3], #[[1]] > 0 &]}, {k, 3, 500, 3}], #[[2]] == k &], {k, 10}]
PROG
(Python)
from itertools import count
from sympy.solvers.diophantine.diophantine import power_representation
def A377444(n): return next(filter(lambda k:len(list(power_representation(k**3, 3, 3)))==n, count(1))) # Chai Wah Wu, Nov 19 2024
CROSSREFS
Cf. A316359.
Sequence in context: A079843 A290582 A346071 * A076941 A357198 A006779
KEYWORD
nonn,easy
AUTHOR
Zhining Yang, Oct 28 2024
STATUS
approved