OFFSET
1,2
COMMENTS
EXAMPLE
(tan x)/x = (1 + 1/3*x^2)(1 + 2/15*x^4)(1 + 1/105*x^6)(1 + 53/2835*x^8)...
and this sequence lists the numerators of (1/3, 2/15, 1/105, 53/2835, ...).
PROG
(PARI) t=tan(x+O(x)^58)/x; vector(#t\2, n, c=polcoef(t, n*2); t/=1+c*x^(n*2); numerator(c))
CROSSREFS
KEYWORD
nonn,frac
AUTHOR
M. F. Hasler, May 07 2022
STATUS
approved