The following program tests this relation for the case of j_1=3/2 , j_2=3/2 , j_3=3 , j_4=1/2 , j_5=1/2 , j_6=1
xxxxxxxxxx
from sympy import S
from sympy.physics.wigner import wigner_6j
# Twice the values of all js
j1 = 3
j2 = 5
j3 = 2
j4 = 3
j5 = 5
j6 = 1
""" The triangular relation has to be fulfilled """
print wigner_6j(S(j1)/2, S(j2)/2, j3, S(j4)/2, S(j5)/2, j6)
""" Swapping columns 1 <==> 2 """
print wigner_6j(S(j2)/2, S(j1)/2, j3, S(j5)/2, S(j4)/2, j6)