######################################################### # # # Coded by Indranil Ghosh (indranilg49@gmail.com) # # # ######################################################### #Python 2.7.11, OEIS sequence: A275807 from sympy import prime, primorial, factorial as f def a002110(n): return 1 if n<1 else primorial(n) def a007623(n, p=2): return n if n