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.

A170919 a(n) = denominator of the coefficient c(n) of x^n in (tan x)/Product_{k=1..n-1} 1 + c(k)*x^k, n = 1, 2, 3, ...

Original entry on oeis.org

1, 1, 3, 3, 5, 45, 105, 315, 2835, 14175, 5775, 467775, 6081075, 2837835, 212837625, 70945875, 3618239625, 97692469875, 206239658625, 9280784638125, 1031198293125, 142924083427125, 322279795963125, 101111706320625, 136968913284328125, 161872352063296875
Offset: 1

Views

Author

N. J. A. Sloane, Jan 30 2010

Keywords

Examples

			1, -1, 7/3, -14/3, 54/5, -1112/45, 6574/105, -48488/315, 1143731/2835, ...
		

Crossrefs

Cf. A170918 (numerators), A170910-A170917.
Cf. A353583 / A353584 for power product expansion of 1 + tan x.
Cf. A353586 / A353587 for power product expansion of (tan x)/x.

Programs

  • Maple
    L := 28: g := NULL:
    t := series(tan(x), x, L):
    for n from 1 to L-2 do
       c := coeff(t, x, n);
       t := series(t/(1 + c*x^n), x, L);
       g := g, c;
    od: map(denom, [g]); # Based on Maple in A170918. - Peter Luschny, Oct 05 2019

Extensions

Following a suggestion from Ilya Gutkovskiy, name corrected so that it matches the data by Peter Luschny, May 12 2022