login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A302542
Expansion of e.g.f. arctan(x)/cos(x) (odd powers only).
3
1, 1, 29, -139, 31737, -1824151, 313750293, -51584719523, 13137192234225, -3947317975733039, 1522475446731094285, -702509124781480897211, 389722900767594460770025, -253710144786166583863030983, 192285396891961478711402819077, -167564604997707653568802119363795
OFFSET
0,3
FORMULA
a(n) = (2*n+1)! * [x^(2*n+1)] arctan(x)/cos(x).
EXAMPLE
arctan(x)/cos(x) = x/1! + x^3/3! + 29*x^5/5! - 139*x^7/7! + 31737*x^9/9! - 1824151*x^11/11! + ...
MATHEMATICA
nmax = 16; Table[(CoefficientList[Series[ArcTan[x]/Cos[x], {x, 0, 2 nmax + 1}], x] Range[0, 2 nmax + 1]!)[[n]], {n, 2, 2 nmax, 2}]
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Apr 09 2018
STATUS
approved