A187870 Numerator of the coefficient of x^(2n) in the expansion of 1/x^4 - 1/(3*x^2) - 1/(x^3*arctanh(x)).
4, 44, 428, 10196, 10719068, 25865068, 5472607916, 74185965772, 264698472181028, 2290048394728148, 19435959308462817284, 2753151578548809148, 20586893910854623222436, 134344844535611780572028924
Offset: 0
Crossrefs
Cf. A195466 (denominator).
Programs
-
Maple
A187870 := proc(n) 1/x^4 -1/(3*x^2) -1/(x^3*arctanh(x)) ; coeftayl(%,x=0,2*n) ; numer(%) ; end proc: seq(A187870(n),n=0..10) ; # R. J. Mathar, Sep 21 2011 # Or seq((-1)^n*numer(coeff(series(1/arctan(x),x,2*n+2),x,2*n+1)),n=1..14); # Peter Luschny, Oct 04 2014
-
Mathematica
a[n_] := Sum[(2^(j+1)*Binomial[2*n+3, j]*Sum[(k!*StirlingS1[j+k, j]*StirlingS2[j+1, k])/(j+k)!, {k, 0, j+1}])/(j+1), {j, 0, 2*n+3}]/ (2*n+3); Table[a[n] // Numerator, {n, 0, 13}] (* Jean-François Alcover, Jul 03 2013, after Vladimir Kruchinin's formula in A216272 *)
Comments