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.

A354546 Expansion of e.g.f. exp(x)^( cos(x) - sin(x) ).

This page as a plain text file.
%I A354546 #16 Aug 18 2022 10:19:51
%S A354546 1,1,-1,-8,-7,96,385,-1210,-14943,-5912,593361,2409298,-22935647,
%T A354546 -236575468,590041257,20313729886,40488350401,-1659176093392,
%U A354546 -11796304552991,120680593857514,1966312603184321,-4949789957167124,-288454178376442407,-849587090710029098
%N A354546 Expansion of e.g.f. exp(x)^( cos(x) - sin(x) ).
%F A354546 a(0) = 1; a(n) = Sum_{k=1..n} (-1)^floor(k/2) * k * binomial(n-1,k-1) * a(n-k).
%o A354546 (PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(x)^(cos(x)-sin(x))))
%o A354546 (PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=1, i, (-1)^(j\2)*j*binomial(i-1, j-1)*v[i-j+1])); v;
%Y A354546 Cf. A000248, A009189, A009214, A354545.
%K A354546 sign
%O A354546 0,4
%A A354546 _Seiichi Manyama_, Aug 18 2022