My mathematica is doing weird things. Consider the function
f[n_]:=Re[(1/2)*(I*Pi+(-1)^n*n!*Gamma[-n,-n])] Let's make a list out of this
points:=Table[{n,f[n]},{n,60,63}] when evaluated I get that the list points has these four entries
N@points (* {{60., 0.0539289}, {61., 0.0534851}, {62., 0.00402142}, {63.,0.00395776}} *) That is, the first two are above 0.05 and the last two are significantly smaller. Nonetheless, when I perform a ListPlot of points I get a plot where the four dots are way above 0.05. What is going on? Is this a bug?
ListPlot[points, PlotRange -> {0, 0.06}, PlotStyle -> Red] 
Tableis missing an iterator (n) andGamma[-60,-60]doesn't evaluate for me. Did you transcribe your code correctly? $\endgroup$N, otherwise you would see something with very large integers multiplied byGama[-60,-60], so I added that line to the post. So if you useListPlot[N@points]then you see what you expect $\endgroup$ListPlotis being smarter thanNin this case, check the output from this:Block[{$MaxExtraPrecision = 100}, N[points, {∞, 5}] ]$\endgroup$