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!)
A356554 Expansion of e.g.f. ( Product_{k>0} 1/(1-x^k)^k )^x. 3
1, 0, 2, 15, 92, 930, 8514, 116760, 1445744, 23020200, 373858920, 6756785640, 130982295432, 2751191997840, 61046788571664, 1445520760702200, 36387213668348160, 960383111961228480, 26780931923301572544, 781864626481646405760, 23925584882896903854720 (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! * sigma_2(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-x^k)^k)^x))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=2, i, j!*sigma(j-1, 2)/(j-1)*binomial(i-1, j-1)*v[i-j+1])); v;
CROSSREFS
Sequence in context: A037641 A361303 A288952 * A356578 A362768 A258390
KEYWORD
nonn
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 25 12:32 EDT 2024. Contains 371969 sequences. (Running on oeis4.)