Connect via MCP →

Enter Calculation

Formula

Advertisement

Results

Reciprocal Gamma Table 1/Γ(a)
101 rows
from a = -3 in steps of 0.1
1/Γ(a) a 1.128 -1.125 -3 7
a 1/Γ(a)
-3 0
-2.9 -0.52125884
-2.8 -0.87826993
-2.7 -1.07401835
-2.6 -1.1252572
-2.5 -1.05785547
-2.4 -0.90250268
-2.3 -0.69103372
-2.2 -0.45351875
-2.1 -0.21616488
-2 0
-1.9 0.17974443
-1.8 0.31366783
-1.7 0.39778458
-1.6 0.43279123
-1.5 0.42314219
-1.4 0.37604278
-1.3 0.30044944
-1.2 0.20614488
-1.1 0.10293566
-1 0
-0.9 -0.09460233
-0.8 -0.17425991
-0.7 -0.23399093
-0.6 -0.27049452
-0.5 -0.28209479
-0.4 -0.26860199
-0.3 -0.23111496
-0.2 -0.1717874
-0.1 -0.09357787
0 0
0.1 0.1051137
0.2 0.21782488
0.3 0.33427275
0.4 0.4508242
0.5 0.56418958
0.6 0.67150497
0.7 0.77038318
0.8 0.85893702
0.9 0.93577872
1 1
1.1 1.05113701
1.2 1.08912442
1.3 1.11424251
1.4 1.1270605
1.5 1.12837917
1.6 1.11917495
1.7 1.10054741
1.8 1.07367127
1.9 1.03975413
2 1
2.1 0.9555791
2.2 0.90760368
2.3 0.85710962
2.4 0.80504321
2.5 0.75225278
2.6 0.69948435
2.7 0.64738083
2.8 0.59648404
2.9 0.54723902
3 0.5
3.1 0.45503766
3.2 0.41254713
3.3 0.37265636
3.4 0.33543467
3.5 0.30090111
3.6 0.26903244
3.7 0.23977068
3.8 0.21303001
3.9 0.18870311
4 0.16666667
4.1 0.14678634
4.2 0.12892098
4.3 0.11292617
4.4 0.09865726
4.5 0.08597175
4.6 0.07473123
4.7 0.06480289
4.8 0.05606053
4.9 0.04838541
5 0.04166667
5.1 0.03580155
5.2 0.03069547
5.3 0.0262619
5.4 0.0224221
5.5 0.01910483
5.6 0.01624592
5.7 0.01378785
5.8 0.01167928
5.9 0.00987457
6 0.00833333
6.1 0.00701991
6.2 0.00590298
6.3 0.00495508
6.4 0.00415224
6.5 0.00347361
6.6 0.00290106
6.7 0.00241892
6.8 0.00201367
6.9 0.00167366
7 0.00138889

What this calculator does

This tool builds a table and line graph of the reciprocal gamma function, \(1/\Gamma(a)\), over a sequence of values of the argument a. You choose where the sequence starts, how big each step is, and how many points (rows) you want. The result is a clean two-column table of a versus \(1/\Gamma(a)\) plus a plotted curve. This is pure mathematics and applies identically everywhere.

How to use it

Enter the initial value of a (the first argument), the increment (step) added to a for each successive row, and the number of iterations (how many rows to generate). For example, start = -3, step = 0.1, and 101 rows produce the sequence a = -3, -2.9, -2.8, ..., up to a = 7.0.

The formula explained

The gamma function generalizes the factorial: \(\Gamma(n+1) = n!\) and \(\Gamma(1/2) = \sqrt{\pi}\). For \(\mathrm{Re}(a) > 0\) it is defined by the integral $$\Gamma(a) = \int_{0}^{\infty} t^{a-1}e^{-t}\, dt,$$ and extended to other values by the recurrence \(\Gamma(a) = \Gamma(a+1)/a\) and the reflection formula \(\Gamma(a)\Gamma(1-a) = \pi/\sin(\pi a)\). We evaluate \(\Gamma(a)\) with the Lanczos approximation (g = 7) and use reflection for a < 0.5. The output is simply $$f(a_k) = \frac{1}{\Gamma(a_k)}, \quad a_k = \text{Start } a + k \cdot \text{Step}, \quad k = 0,1,\dots,\text{Rows}-1$$ Unlike \(\Gamma(a)\) itself, the reciprocal \(1/\Gamma(a)\) is an entire function with no poles: where \(\Gamma\) blows up (at a = 0, -1, -2, ...), the reciprocal is exactly 0.

Advertisement
Flat line graph of the reciprocal gamma function curve crossing zero at negative integer arguments
The reciprocal gamma function 1/Γ(a) is smooth everywhere and equals zero at a = 0, -1, -2, ... where Gamma has poles.

Worked example

With the defaults, a few rows are: a = -3 gives \(1/\Gamma(-3) = 0\) (non-positive integer, a pole of \(\Gamma\)); a = -2.5 gives about \(-1.0579\); a = 0.5 gives \(1/\sqrt{\pi} \approx 0.5642\); a = 1 and a = 2 both give 1; a = 5 gives \(1/24 \approx 0.04167\); and a = 7 gives \(1/720 \approx 0.001389\). The curve peaks near \(a \approx 1.46\), where \(\Gamma(a)\) reaches its minimum (\(\approx 0.8856\)), giving a maximum \(1/\Gamma \approx 1.129\).

FAQ

Why is \(1/\Gamma(a)\) zero at 0 and negative integers? Because \(\Gamma(a)\) has simple poles there, so its reciprocal vanishes. We detect non-positive integers and return exactly 0.

What about very large a? \(\Gamma(a)\) grows extremely fast and overflows; we return \(1/\Gamma = 0\) instead of NaN.

How accurate is it? The Lanczos g=7 approximation is accurate to roughly 15 significant digits across the real line, which is more than enough for tabulation and plotting.

Last updated: