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!)
A354324 Expansion of e.g.f. exp( x/8 * (exp(4 * x) - 1) ). 1
1, 0, 1, 6, 35, 220, 1623, 14294, 144393, 1605384, 19295585, 249938062, 3485830299, 52134346004, 830954821431, 14031857352270, 249956799370193, 4682845238636560, 92038069890608769, 1893193762636115990, 40659808272769543635, 909744112577077608012 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(0) = 1; a(n) = (1/2) * Sum_{k=2..n} k * 4^(k-2) * binomial(n-1,k-1) * a(n-k).
a(n) = n! * Sum_{k=0..floor(n/2)} 4^(n-2*k) * Stirling2(n-k,k)/(2^k * (n-k)!).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(x/8*(exp(4*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*4^(j-2)*binomial(i-1, j-1)*v[i-j+1])/2); v;
(PARI) a(n) = n!*sum(k=0, n\2, 4^(n-2*k)*stirling(n-k, k, 2)/(2^k*(n-k)!));
CROSSREFS
Cf. A354326.
Sequence in context: A354136 A370323 A317409 * A213452 A357834 A000399
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 24 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 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)