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.

A004701 Expansion of e.g.f. 1/(4 - exp(x) - exp(2*x) - exp(3*x)).

This page as a plain text file.
%I A004701 #20 Sep 08 2022 08:44:33
%S A004701 1,6,86,1836,52250,1858716,79345346,3951633636,224917803770,
%T A004701 14402023566156,1024662142371506,80191908540219636,
%U A004701 6846505625682597290,633241684193651067996,63074628985206471485666,6731364953866743063784836
%N A004701 Expansion of e.g.f. 1/(4 - exp(x) - exp(2*x) - exp(3*x)).
%H A004701 Vincenzo Librandi, <a href="/A004701/b004701.txt">Table of n, a(n) for n = 0..200</a>
%F A004701 a(0) = 1; a(n) = Sum_{k=1..n} binomial(n,k) * (1 + 2^k + 3^k) * a(n-k). - _Ilya Gutkovskiy_, Jan 15 2020
%p A004701 seq(coeff(series(factorial(n)*(4-exp(x)-exp(2*x)-exp(3*x))^(-1),x,n+1), x, n), n = 0 .. 15); # _Muniru A Asiru_, Oct 10 2018
%t A004701 With[{nn=20},CoefficientList[Series[1/(4-Exp[x]-Exp[2*x]-Exp[3*x]),{x,0,nn}],x] Range[0,nn]!] (* _Vincenzo Librandi_, Jun 14 2012 *)
%o A004701 (PARI) x='x+O('x^30); Vec(serlaplace(1/(4-sum(k=1,3, exp(k*x))))) \\ _G. C. Greubel_, Oct 09 2018
%o A004701 (Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!(1/(4-Exp(x)-Exp(2*x)-Exp(3*x)))); [Factorial(n-1)*b[n]: n in [1..m]]; // _G. C. Greubel_, Oct 09 2018
%Y A004701 Column k=3 of A320253.
%K A004701 nonn
%O A004701 0,2
%A A004701 _N. J. A. Sloane_