0

What would be the example of a function f(n) that is asymptotically slower than O(n^n) and faster than O(n!), i.e.

O(n!) < O(f(n))< O(n^n)

?

Roam
  • 4,831
  • 9
  • 43
  • 72

1 Answers1

0

f: n ↦ (n+1)! is one such function.

Oswald
  • 31,254
  • 3
  • 43
  • 68