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”).
%I #10 Jun 15 2022 16:04:15
%S 1,0,1,2,4,6,8,10,12,14,17,19,22,24,27,30,33,35,38,41,44,48,51,54,57,
%T 60,64,67,70,74,77,81,84,88,91,95,98,102,106,109,113,117,121,125,128,
%U 132,136,140,144,148,152,156,160,164,168,172,176,180,184,188,192,196
%N Integer part of log(n!)^((1 - 1/n)^(1/n)).
%t Join[{1}, Table[Floor[Log[n! ]^(1 - 1/n)^(1/n)],{n,2,62}]] (* corrected by _Georg Fischer_, Jun 14 2022 *)
%Y Cf. A062418.
%K nonn,easy
%O 1,4
%A _Olivier Gérard_, Jun 23 2001