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!)
A356588 Expansion of e.g.f. ( Product_{k>0} 1/(1 - k * x^k)^(1/k) )^x. 2
1, 0, 2, 9, 44, 450, 2754, 45360, 340304, 6481944, 81801000, 1370631240, 21731534472, 511117017840, 8113055559504, 193958323289640, 4765385232157440, 108183734293844160, 2754467397591689664, 80416694712647352960, 2132862160676063137920, 67803682111729108433280 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1, a(1) = 0; a(n) = Sum_{k=2..n} k! * A055225(k-1)/(k-1) * binomial(n-1,k-1) * a(n-k).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(1/prod(k=1, N, (1-k*x^k)^(1/k))^x))
(PARI) a055225(n) = sumdiv(n, d, d^(n/d));
a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=2, i, j!*a055225(j-1)/(j-1)*binomial(i-1, j-1)*v[i-j+1])); v;
CROSSREFS
Sequence in context: A327940 A354623 A088369 * A303938 A059388 A059392
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 14 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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)