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!)
A367846 Expansion of e.g.f. 1/(1 - x + log(1 - 3*x)). 6
1, 4, 41, 654, 14028, 377112, 12177126, 458916588, 19769059944, 958125646080, 51597765220608, 3056601306206016, 197532472461453072, 13829353660386169344, 1042679226974498229456, 84229294995413626072608, 7257792124889497549663488 (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} 3^k * (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, 3^j*(j-1)!*binomial(i, j)*v[i-j+1])); v;
CROSSREFS
Cf. A367836.
Sequence in context: A230251 A001908 A367836 * A270703 A363302 A361182
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 June 27 20:20 EDT 2024. Contains 373753 sequences. (Running on oeis4.)