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

A037446
Floor of (n/e)^(n/e).
0
0, 0, 1, 1, 3, 5, 11, 23, 52, 120, 286, 702, 1779, 4636, 12398, 33981, 95303, 273134, 798957, 2382777, 7238273, 22376763, 70343548, 224698356, 728843771, 2399172217, 8010042859, 27109839313, 92966452913, 322876110331
OFFSET
1,5
MATHEMATICA
ne[n_]:=Module[{c=n/E}, Floor[c^c]]; Array[ne, 30] (* Harvey P. Dale, Nov 02 2011 *)
PROG
(PARI) v=[]; for(n=1, 50, v=concat(v, floor((n/exp(1))^(n/exp(1))))); v
CROSSREFS
Sequence in context: A335098 A018113 A113281 * A113151 A269964 A305412
KEYWORD
easy,nonn
AUTHOR
Jason Earls, Jun 30 2001
STATUS
approved