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

A103332
Min[pn^bn] over all sorted multiplicative partitions of n! of length n.
1
3, 5, 5, 7, 7, 8, 8, 11, 11, 13, 13, 13, 13, 17, 17, 19, 19, 19, 19, 23, 23, 25, 25, 25, 25, 29, 29, 31, 31, 31, 31, 31, 31, 37, 37, 37, 37, 41, 41, 43, 43, 43, 43, 47, 47, 49, 49, 49, 49, 53, 53, 53, 53, 53, 53, 59, 59, 61, 61, 61, 61, 61, 64, 67, 67, 67, 67, 71, 71, 73, 73, 73
OFFSET
4,1
COMMENTS
a(n) >= A007917(n); a(n) is a power of some prime p <= n.
PROG
(PARI) works(n, m) = local(f, s, l, p, x); f = factor(n!); s = 0; l = matsize(f)[1]; if (f[l, 1] > m, return(0)); for (i = 1, l, p = f[i, 1]; x = 1; while (p^x <= m, x++); x--; s += f[i, 2]\x; if (f[i, 2]%x, s++)); s <= n; a(n) = local(f, m); f = factor(n); m = f[matsize(f)[1], 1]; while (!works(n, m), m++); m
CROSSREFS
Sequence in context: A126611 A164019 A307701 * A195796 A279944 A309424
KEYWORD
nonn,less
AUTHOR
David Wasserman, Jan 31 2005
STATUS
approved