{"id":16219,"date":"2021-08-12T09:36:43","date_gmt":"2021-08-12T04:06:43","guid":{"rendered":"https:\/\/python-programs.com\/?p=16219"},"modified":"2021-11-22T18:38:27","modified_gmt":"2021-11-22T13:08:27","slug":"python-program-to-find-super-factorial-of-a-number","status":"publish","type":"post","link":"https:\/\/python-programs.com\/python-program-to-find-super-factorial-of-a-number\/","title":{"rendered":"Python Program to Find Super Factorial of a Number"},"content":{"rendered":"

In the previous article, we have discussed Python Program to Calculate the Value of nPr<\/a>
\nSuper factorial :<\/strong><\/p>\n

Super factorial of a number is obtained by multiplying the first N factorials of a given Number.<\/p>\n

Given a number, and the task is to find the superfactorial of an above-given number.<\/p>\n

Examples:<\/strong><\/p>\n

Example1:<\/strong><\/p>\n

Input:<\/strong><\/p>\n

Given Number = 5<\/pre>\n

Output:<\/strong><\/p>\n

The super Factorial value of above given number =  34560<\/pre>\n

Example 2:<\/strong><\/p>\n

Input:<\/strong><\/p>\n

Given Number = 4<\/pre>\n

Output:<\/strong><\/p>\n

The super Factorial value of above given number =  288<\/pre>\n

Program to Find SuperFactorial of a Number.<\/h2>\n

Below are the ways to find SuperFactorial of a given Number.<\/p>\n