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!)
A355880 a(n) is a maximum of t*u*v such that 2*t*u + 2*t*v + 2*u*v <= n, where t,u,v are positive integers. 1
0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 4, 4, 4, 4, 4, 4, 6, 6, 8, 8, 8, 8, 8, 8, 9, 9, 12, 12, 12, 12, 12, 12, 12, 12, 16, 16, 18, 18, 18, 18, 18, 18, 20, 20, 20, 20, 24, 24, 27, 27, 27, 27, 27, 27, 27, 27, 30, 30, 32, 32, 36, 36, 36, 36, 36, 36, 36, 36, 36, 36, 40 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,10
COMMENTS
The largest volume of a rectangular cuboid with a surface area less than or equal to n.
LINKS
PROG
(Python)
for k in range(1, 200):
max_v = 0
for a in range(1, k):
for b in range(1, a+1):
for c in range(1, b+1):
if 2*a*b + 2*a*c + 2*b*c <= k and a*b*c > max_v:
max_v = a*b*c
print(max_v, end = ', ')
CROSSREFS
Cf. A008642.
Sequence in context: A364678 A175387 A024542 * A209082 A257684 A098424
KEYWORD
nonn
AUTHOR
Gleb Ivanov, Jul 20 2022
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 15 14:50 EDT 2024. Contains 375173 sequences. (Running on oeis4.)