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!)
A354504 Expansion of e.g.f. ( Product_{k>0} (1 + x^k)^k )^exp(x). 2
1, 1, 6, 48, 402, 4375, 54595, 777189, 12284188, 215999025, 4132338673, 85640640877, 1910121348674, 45571124446445, 1157169377895739, 31150000798832647, 885481496002286200, 26498034473000080321, 832407848080194500301, 27378188500890922864153 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} A354508(k) * binomial(n-1,k-1) * a(n-k).
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(prod(k=1, N, (1+x^k)^k)^exp(x)))
(PARI) a354508(n) = n!*sum(k=1, n, sumdiv(k, d, (-1)^(k/d+1)*d^2)/(k*(n-k)!));
a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=1, i, a354508(j)*binomial(i-1, j-1)*v[i-j+1])); v;
CROSSREFS
Sequence in context: A264083 A083233 A002918 * A005399 A366942 A258790
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 15 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 September 16 09:24 EDT 2024. Contains 375965 sequences. (Running on oeis4.)