A055775 a(n) = floor(n^n / n!).
1, 1, 2, 4, 10, 26, 64, 163, 416, 1067, 2755, 7147, 18613, 48638, 127463, 334864, 881657, 2325750, 6145596, 16263866, 43099804, 114356611, 303761260, 807692034, 2149632061, 5726042115, 15264691107, 40722913454, 108713644516
Offset: 0
Examples
a(5)=26 since 5^5=3125, 5!=120, 3125/120=26.0416666...
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..300
- Washington Bomfim, A method to find bijections from a set of n integers to {0,1, ... ,n-1}
- Eric Weisstein's World of Mathematics, Stirling's Approximation for n!
Programs
-
Magma
[Floor((n^n)/Factorial(n)): n in [0..30]]; // Vincenzo Librandi, Aug 22 2011
-
Mathematica
Join[{1}, Table[Floor[n^n/n!], {n, 30}]] (* Vladimir Joseph Stephan Orlovsky, Jan 15 2009 *)
-
PARI
a(n)=n^n\n! \\ Charles R Greathouse IV, Apr 17 2012
Extensions
More terms from James Sellers, Jul 13 2000
Comments