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
1, 4, 35, 459, 8025, 175383, 4599507, 140728437, 4920898317, 193579534155, 8461200381111, 406815231899409, 21337866382711521, 1212458502624643719, 74193773349948903483, 4864422156647044661949, 340191752483516373189621, 25278147388666498256368323 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = n * a(n-1) + 3 * Sum_{k=1..n} binomial(n,k) * a(n-k).
PROG
(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;
CROSSREFS
Sequence in context: A183878 A132694 A270917 * A367923 A242795 A349527
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Dec 05 2023
STATUS
approved

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 June 27 20:20 EDT 2024. Contains 373753 sequences. (Running on oeis4.)