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.

A009300 Expansion of exp(x/cos(x)).

This page as a plain text file.
%I A009300 #21 Jan 27 2018 06:29:00
%S A009300 1,1,1,4,13,56,301,1688,11705,84160,698521,6141312,59340997,613282944,
%T A009300 6782462597,80158806016,1000434618609,13267800137728,184576848771889,
%U A009300 2710082835353600,41577074746699261,669033814167273472
%N A009300 Expansion of exp(x/cos(x)).
%H A009300 Vladimir Kruchinin, D. V. Kruchinin, <a href="http://arxiv.org/abs/1103.2582">Composita and their properties</a>, arXiv:1103.2582 [math.CO], 2011-2013.
%F A009300 a(n) = sum(binomial(n,k)*(if n=k then 1 else if oddp(n-k) then 0 else sum(sum(binomial(m,j)*2^(1-j)*sum((-1)^((n-k)/2)*binomial(j,i)*(j-2*i)^(n-k),i,0,floor((j-1)/2))*(-1)^(m-j),j,1,m)*(-1)^m*binomial(k+m-1,k-1),m,1,n-k)),k,1,n), n>0. - _Vladimir Kruchinin_, Sep 12 2010
%t A009300 With[{nn=30},CoefficientList[Series[Exp[x/Cos[x]],{x,0,nn}],x] Range[0,nn]!] (* _Harvey P. Dale_, Jul 10 2015 *)
%o A009300 (Maxima) a(n):=sum(binomial(n,k)*(if n=k then 1 else if oddp(n-k) then 0 else sum(sum(binomial(m,j)*2^(1-j)*sum((-1)^((n-k)/2)*binomial(j,i)*(j-2*i)^(n-k),i,0,floor((j-1)/2))*(-1)^(m-j),j,1,m)*(-1)^m*binomial(k+m-1,k-1),m,1,n-k)),k,1,n); /* _Vladimir Kruchinin_, Sep 12 2010 */
%K A009300 nonn,easy
%O A009300 0,4
%A A009300 _R. H. Hardin_
%E A009300 Extended and signs tested by _Olivier Gérard_, Mar 15 1997
%E A009300 Prior Mathematica program replaced by _Harvey P. Dale_, Jul 10 2015