OFFSET
0,1
COMMENTS
Prepending 3 to the data gives the denominators of the odd powers in the expansion of 1/arctan(x). - Peter Luschny, Oct 04 2014
FORMULA
1/x^4 - 1/(3x^2) - 1/(x^3*arctanh x) = 4/45 + 44*x^2/945 + 428*x^4/14175 + 10196*x^6/467775 + ...
MAPLE
A195466 := proc(n)
1/x^4 -1/(3*x^2) -1/(x^3*arctanh(x)) ;
coeftayl(%, x=0, 2*n) ;
denom(%) ;
end proc
seq(A195466(n), n=0..15) ;
# Or
seq(denom(coeff(series(1/arctan(x), x, 2*n+2), x, 2*n+1)), n=1..16); # 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] // Denominator, {n, 0, 15}] (* Jean-François Alcover, Jul 03 2013, after Vladimir Kruchinin's formula in A216272 *)
CROSSREFS
KEYWORD
nonn,frac
AUTHOR
R. J. Mathar, Sep 21 2011
STATUS
approved