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

A062413
Integer part of log(n!)^(1 - 1/n).
2
1, 0, 1, 2, 3, 4, 6, 7, 9, 11, 13, 15, 17, 20, 22, 24, 27, 29, 32, 35, 37, 40, 43, 46, 49, 52, 55, 58, 61, 64, 67, 71, 74, 77, 80, 84, 87, 91, 94, 98, 101, 105, 108, 112, 115, 119, 123, 126, 130, 134, 138, 141, 145, 149, 153, 157, 161, 164, 168, 172, 176, 180, 184
OFFSET
1,4
LINKS
MATHEMATICA
Join[{1}, Table[Floor[Log[n!]^(1-1/n)], {n, 2, 70}]] (* Harvey P. Dale, Nov 04 2017 *)
PROG
(PARI) { default(realprecision, 50); f=1; for (n=1, 1000, f*=n; write("b062413.txt", n, " ", floor(log(f)^(1 - 1/n))) ) } \\ Harry J. Smith, Aug 07 2009
CROSSREFS
Cf. A062414.
Sequence in context: A234852 A022825 A225086 * A064313 A011865 A085680
KEYWORD
nonn,easy
AUTHOR
Olivier Gérard, Jun 23 2001
EXTENSIONS
Prior Mathematica program replaced by Harvey P. Dale, Nov 04 2017
STATUS
approved