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!)
A356564 Expansion of e.g.f. ( Product_{k>0} (1+x^k)^(1/k) )^x. 3
1, 0, 2, 0, 28, -30, 888, -1260, 51728, -196560, 5293080, -22286880, 710229408, -4851269280, 138348035616, -1091188098000, 36482139114240, -379928382462720, 11812558481332992, -137793570801143040, 4609972759421554560, -67292912045817561600 (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! * A048272(k-1)/(k-1) * binomial(n-1,k-1) * a(n-k).
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(prod(k=1, N, (1+x^k)^(1/k))^x))
(PARI) a048272(n) = sumdiv(n, d, (-1)^(n/d+1));
a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=2, i, j!*a048272(j-1)/(j-1)*binomial(i-1, j-1)*v[i-j+1])); v;
CROSSREFS
Sequence in context: A336287 A337074 A156459 * A007218 A092177 A345762
KEYWORD
sign
AUTHOR
Seiichi Manyama, Aug 12 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 20:06 EDT 2024. Contains 371963 sequences. (Running on oeis4.)