OFFSET
1,2
COMMENTS
Least number of identical objects that can be arranged in exactly n ways in a rectangle, modulo rotation.
Smallest number which has n distinct unordered factorizations of the form x*y. - Lekraj Beedassy, Jan 09 2008
LINKS
Paul Tek, Table of n, a(n) for n = 1..1000
T. Verhoeff, Rectangular and Trapezoidal Arrangements, J. Integer Sequences, Vol. 2, 1999, #99.1.6.
MATHEMATICA
nn = 18; t = Table[0, {nn}]; found = 0; n = 0; While[found < nn, n++; c = Length[Select[Divisors[n], # <= Sqrt[n] &]]; If[c > 0 && c <= nn && t[[c]] == 0, t[[c]] = n; found++]]; t (* T. D. Noe, Jul 10 2013 *)
PROG
(Haskell)
import Data.List (elemIndex)
import Data.Maybe (fromJust)
a038549 = (+ 1) . fromJust . (`elemIndex` a038548_list)
-- Reinhard Zumkeller, Dec 26 2012
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from David W. Wilson.
STATUS
approved