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!)
A367853 Expansion of e.g.f. 1/(1 - x + log(1 - 4*x)/4). 3
1, 2, 12, 128, 1952, 38464, 926336, 26323968, 861419520, 31882358784, 1316275003392, 59954841649152, 2985997926727680, 161401148097036288, 9408988894966579200, 588381964243109412864, 39285329204482179858432, 2789234068575581984784384 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = n * a(n-1) + Sum_{k=1..n} 4^(k-1) * (k-1)! * 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]+sum(j=1, i, 4^(j-1)*(j-1)!*binomial(i, j)*v[i-j+1])); v;
CROSSREFS
Sequence in context: A214431 A227461 A367374 * A228608 A097629 A259267
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Dec 02 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 August 9 16:21 EDT 2024. Contains 375044 sequences. (Running on oeis4.)