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!)
A217314 Smallest k such that k! > A000178(n) (the superfactorials). 0
2, 2, 3, 4, 6, 8, 11, 15, 18, 23, 27, 33, 38, 44, 51, 58, 65, 73, 81, 90, 100, 109, 120, 130, 141, 153, 165, 178, 191, 204, 218, 233, 247, 263, 279, 295, 312, 329, 347, 365, 383, 402, 422, 442, 462, 483, 505, 527, 549, 572, 595, 619, 643, 668, 693, 719, 745 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
Eric W. Weisstein, Mathworld: Factorial
Eric W. Weisstein, Mathworld: Superfactorial
Wikipedia, Factorial
EXAMPLE
SF(4) = 4!*3!*2!*1! = 288, and 5! < 288 < 6! so a(4)=6.
MATHEMATICA
a[n_] := Block[{ff = Product[k!, {k, n}], k = 1}, While[k! <= ff, k++]; k]; Table[a[n], {n, 0, 60}] (* Giovanni Resta, Mar 18 2013 *)
PROG
(JavaScript)
function factorial(n) {
var i, c=1;
for (i=2; i<=n; i++) c*=i;
return c;
}
k=1;
m=1;
for (i=2; i<30; i++) {
k*=factorial(i);
while (factorial(m)<=k) m++;
document.write(m+", ");
}
CROSSREFS
Sequence in context: A182372 A089333 A098492 * A173508 A103632 A214076
KEYWORD
nonn
AUTHOR
Jon Perry, Mar 17 2013
EXTENSIONS
a(27)-a(56) from Giovanni Resta, Mar 18 2013
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 April 19 10:56 EDT 2024. Contains 371791 sequences. (Running on oeis4.)