@AndriusKulikauskas #Pythagorus to the n
Here in simple Python:
# @taatm
# Fermat, Pythagorus and TAATM
# c^n * sin(π/(2(n-1)) = a^n + b ^n
n=5
a=3
b=4
c=5
import math
triangle = (math.sin(math.pi/(2*(n-1))))
h = (5**n) * triangle
others = (a**n)+(b**n)
test = h - others
print (h)
print (others)
print (test)