A353584 Denominators of coefficients c(n) in product expansion of 1 + tan x = Product_{k>=1} 1 + c(k)*x^k.
1, 1, 3, 3, 15, 15, 315, 105, 567, 405, 155925, 467775, 1216215, 34749, 638512875, 638512875, 2170943775, 32564156625, 1856156927625, 3093594879375, 38979295480125, 5568470782875, 49308808782358125, 2900518163668125, 284473896821296875, 1232720219558953125
Offset: 1
Examples
1 + tan x = (1 + x)(1 + 1/3*x^3)(1 - 1/3*x^4/3)(1 + 7/15*x^5)(1 - 7/15*x^5)(...), and this sequence lists the denominators of (1, 0, 1/3, -1/3, 7/15, -7/15, ...).
Programs
-
PARI
t=1+tan(x+O(x)^29); vector(#t-1,n,c=polcoef(t,n);t/=1+c*x^n;denominator(c))
Comments