A300484 a(n) = 2 * Integral_{t>=0} T_n(t/2+1) * exp(-t) * dt, n>=0, where T_n(x) is n-th Chebyshev polynomial of first kind.
2, 3, 8, 29, 130, 697, 4376, 31607, 258690, 2368847, 24011832, 267025409, 3233119106, 42346123861, 596617706344, 8998126507307, 144651872924162, 2469279716419035, 44609768252582312, 850345380011532261, 17056474009400181122
Offset: 0
Keywords
Programs
-
PARI
{ A300484(n) = if(n==0, return(2)); subst( serlaplace( 2*polchebyshev(n, 1, (x+2)/2)), x, 1); }
Comments