login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A046983 Denominators of Taylor series for tan(x + Pi/4). 4

%I #16 Sep 05 2023 13:11:05

%S 1,1,1,3,3,15,45,315,63,2835,14175,155925,93555,6081075,42567525,

%T 638512875,127702575,10854718875,97692469875,1856156927625,

%U 371231385525,194896477400625,2143861251406875,2900518163668125,2275791174570375

%N Denominators of Taylor series for tan(x + Pi/4).

%D G. W. Caunt, Infinitesimal Calculus, Oxford Univ. Press, 1914, p. 477.

%H T. D. Noe, <a href="/A046983/b046983.txt">Table of n, a(n) for n=0..100</a>

%e 1 + 2*x + 2*x^2 + (8/3)*x^3 + (10/3)*x^4 + (64/15)*x^5 + (244/45)*x^6 + ...

%p A046983 := proc(n)

%p coeftayl(tan(x+Pi/4),x=0,n) ;

%p denom(%) ;

%p end proc: # _R. J. Mathar_, Jan 22 2017

%t nmax = 24; t[0, 1] = 1; t[0, _] = 0; t[n_, k_] := t[n, k] = (k-1)*t[n-1, k-1] + (k+1)*t[n-1, k+1]; Denominator[ Table[ Sum[ t[n, k]/n!, {k, 0, n+1}], {n, 0, nmax} ]] (* _Jean-François Alcover_, Nov 09 2011 *)

%t CoefficientList[Series[Tan[x+Pi/4],{x,0,30}],x]//Denominator (* _Harvey P. Dale_, Sep 05 2023 *)

%Y Cf. A046982.

%K nonn,frac,easy,nice

%O 0,4

%A _N. J. A. Sloane_

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 23 08:18 EDT 2024. Contains 374546 sequences. (Running on oeis4.)