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!)
A354612 Expansion of e.g.f. exp(f(x) - 1) where f(x) = (1 + x)^x = e.g.f. for A007113. 1
1, 0, 2, -3, 32, -150, 1404, -11340, 120448, -1319976, 16600320, -223664760, 3300331704, -52223268240, 887583503520, -16071609481200, 309263446333440, -6296705309543040, 135262191966465600, -3056359409652695040, 72462969268541596800 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} A007113(k) * binomial(n-1,k-1) * a(n-k).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp((1+x)^x-1)))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=1, i, j!*sum(k=0, j\2, stirling(j-k, k, 1)/(j-k)!)*binomial(i-1, j-1)*v[i-j+1])); v;
CROSSREFS
Sequence in context: A103108 A107124 A141049 * A052830 A357265 A356904
KEYWORD
sign
AUTHOR
Seiichi Manyama, Jul 08 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 August 17 02:18 EDT 2024. Contains 375198 sequences. (Running on oeis4.)