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!)
A367925 Expansion of e.g.f. 1/(4 - x - 3*exp(x)). 1

%I #14 Dec 05 2023 09:01:09

%S 1,4,35,459,8025,175383,4599507,140728437,4920898317,193579534155,

%T 8461200381111,406815231899409,21337866382711521,1212458502624643719,

%U 74193773349948903483,4864422156647044661949,340191752483516373189621,25278147388666498256368323

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

%F a(0) = 1; a(n) = n * a(n-1) + 3 * Sum_{k=1..n} binomial(n,k) * a(n-k).

%o (PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=i*v[i]+3*sum(j=1, i, binomial(i, j)*v[i-j+1])); v;

%Y Cf. A006155, A367924.

%Y Cf. A032033, A078940, A367831, A367836, A367923.

%K nonn

%O 0,2

%A _Seiichi Manyama_, Dec 05 2023

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 August 14 14:46 EDT 2024. Contains 375165 sequences. (Running on oeis4.)