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!)
A354314 Expansion of e.g.f. 1/(1 - x/3 * (exp(3 * x) - 1)). 2
1, 0, 2, 9, 60, 495, 4986, 58401, 780984, 11749779, 196446870, 3612882933, 72484364052, 1575418827879, 36875093680530, 924769734574185, 24737895033896304, 703105981990977915, 21159355356941587470, 672148402091190649629, 22475238194908656800460 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=2..n} k * 3^(k-2) * binomial(n,k) * a(n-k).
a(n) = n! * Sum_{k=0..floor(n/2)} 3^(n-2*k) * k! * Stirling2(n-k,k)/(n-k)!.
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/(1-x/3*(exp(3*x)-1))))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=2, i, j*3^(j-2)*binomial(i, j)*v[i-j+1])); v;
(PARI) a(n) = n!*sum(k=0, n\2, 3^(n-2*k)*k!*stirling(n-k, k, 2)/(n-k)!);
CROSSREFS
Sequence in context: A363390 A205570 A116364 * A354496 A357683 A120970
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 23 2022
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 April 24 19:06 EDT 2024. Contains 371962 sequences. (Running on oeis4.)