Logo

Greetings from The On-Line Encyclopedia of Integer Sequences!

Hints

Search: id:A102097
Displaying 1-1 of 1 results found. page 1
     Format: long | short | internal | text      Sort: relevance | references | number      Highlight: on | off
A102097 Least edge length of a cuboid having integer edge lengths, volume n, and minimal surface area under those restrictions. +0
4
1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 2, 1, 2, 1, 1, 1, 2, 1, 1, 3, 2, 1, 2, 1, 2, 1, 1, 1, 3, 1, 1, 1, 2, 1, 2, 1, 2, 3, 1, 1, 3, 1, 2, 1, 2, 1, 3, 1, 2, 1, 1, 1, 3, 1, 1, 3, 4, 1, 2, 1, 2, 1, 2, 1, 3, 1, 1, 3, 2, 1, 2, 1, 4, 3, 1, 1, 3 (list; graph; listen)
OFFSET

1,8

COMMENT

Finding a(n) given n is a fundamental problem from integer nonlinear programming, equivalent to minimizing the sum a+b+c when a*b*c=n and a,b,c are integers. a(n) is not strictly prime. a(n) = 1 iff n is prime or n is semiprime (a(1)=1). a(n) <= n^(1/3) for all n.

LINKS

Eric Weisstein's World of Mathematics, "Cuboid."

Eric Weisstein's World of Mathematics, "Sample Variance."

Various (Wikipedia), "Nonlinear Programming."

EXAMPLE

a(10) = 1 because the cuboid of integer edge lengths, volume = 10, and minimal possible surface area under those restrictions has edge lengths {5,2,1}

MATHEMATICA

Clear[fac, faclist, red, bool, n, a, b, c, i, ai, bi, ci]

red[n_] := Reduce[{a*b*c == n, a >= b >= c > 0}, {a, b, c}, Integers];

faclist[n_] := (

If[PrimeQ[n] || n == 1, Return[{n + 1 + 1, {n, 1, 1}}]; Abort[]];

bool = red[n];

Reap[For[i = 1, i <= Length[bool], i++,

ai = bool[[i]][[1]][[2]];

bi = bool[[i]][[2]][[2]];

ci = bool[[i]][[3]][[2]];

Sow[{ai + bi + ci, {ai, bi, ci}}]]][[2]][[1]])

fac[n_] := (

If[PrimeQ[n] || n == 1, Return[{n, 1, 1}]; Abort[]];

faclist[n][[1]][[2]])

Table[fac[k][[3]], {k, 1, 84}]

CROSSREFS

Cf. A102095, A102096.

Adjacent sequences: A102094 A102095 A102096 this_sequence A102098 A102099 A102100

Sequence in context: A115362 A053543 A118663 this_sequence A050330 A076398 A086257

KEYWORD

nonn

AUTHOR

Joseph Biberstine (jrbibers(AT)indiana.edu), Dec 29 2004

page 1

Search completed in 0.002 seconds

Lookup | Welcome | Find friends | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
More pages | Superseeker | Maintained by N. J. A. Sloane (njas@research.att.com)

Last modified May 16 23:01 EDT 2008. Contains 139884 sequences.


AT&T Labs Research