Skip to content

Instantly share code, notes, and snippets.

@foota
Created May 13, 2012 15:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save foota/2689028 to your computer and use it in GitHub Desktop.
Save foota/2689028 to your computer and use it in GitHub Desktop.
Tetration
def tetration(a, n):
b = 1.0
for i in range(n): b = a**b
return b
@foota
Copy link
Author

foota commented May 14, 2012

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment