A163928 Numerators of the higher order exponential integral constants alpha(2,n).
0, 1, 21, 1897, 32197, 20881861, 7139587, 17462165587, 283355376967, 69621962857381, 70246946681461, 1036088178214798501, 1042504974775473001, 29931734181763981573561, 4295332813075795410223, 4312254507400142830831
Offset: 1
Examples
alpha(k=2,n=1) = 0, alpha(k=2,2) = 1, alpha(k=2,3) = 21/16, alpha(k=2,4) = 1897/1296.
Crossrefs
Programs
-
Maple
nmax:=17; rowk:=2; kmax:=nmax: k:=0: for n from 1 to nmax do alpha(k,n):=1 od: for k from 1 to kmax do for n from 1 to nmax do alpha(k,n) := (1/k)*sum(sum(p^(-2*(k-i)),p=0..n-1)*alpha(i, n),i=0..k-1) od; od: seq(alpha(rowk, n),n=1..nmax);
Comments