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”).

A353911
Product_{n>=1} 1 / (1 - a(n)*x^n/n!) = 1 + tan(x).
6
1, -2, 2, -32, 56, -416, 3184, -85504, 309760, -4087552, 48104704, -546922496, 10591523840, -194387924992, 3133776259072, -129880886411264, 1249919350046720, -29073986250604544, 624022403933077504, -15137719350365519872, 381632216575339397120, -11149155036737662615552
OFFSET
1,2
MATHEMATICA
nn = 22; f[x_] := Product[1/(1 - a[n] x^n/n!), {n, 1, nn}]; sol = SolveAlways[0 == Series[f[x] - 1 - Tan[x], {x, 0, nn}], x]; Table[a[n], {n, 1, nn}] /. sol // Flatten
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, May 10 2022
STATUS
approved