cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A353583 Numerators of coefficients c(n) in product expansion of 1 + tan x = Product_{k>=1} 1 + c(k)*x^k.

Original entry on oeis.org

1, 0, 1, -1, 7, -7, 199, -71, 484, -368, 187909, -610103, 2068657, -63614, 1530164189, -1715846683, 7628902283, -125125345078, 9521826231889, -17921564328719, 291162274608871, -47147385565688, 552647133893696333, -36898601487519532, 4761064630028162378
Offset: 1

Views

Author

M. F. Hasler, May 07 2022

Keywords

Comments

See A353584 for the denominators, and A353586 for the analog for (tan x)/x.

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 numerators of (1, 0, 1/3, -1/3, 7/15, -7/15, ...).
		

Crossrefs

Cf. A353584 (denominators), A353586 / A353587 (similar for (tan x)/x).
Cf. A170918 / A170919 for a variant.

Programs

  • PARI
    t=1+tan(x+O(x)^29); vector(#t-1,n,c=polcoef(t,n);t/=1+c*x^n;numerator(c))