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!)
A356393 Expansion of e.g.f. ( Product_{k>0} (1+x^k) )^(1/(1-x)). 5
1, 1, 4, 27, 188, 1730, 18234, 220206, 2958416, 44470296, 729675720, 13002636240, 249986061192, 5154030469848, 113360272804128, 2648908519611480, 65477559553098240, 1707034986277780800, 46798324479957887424, 1345365460101611611584 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} A356390(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)^(1/(1-x))))
(PARI) a356390(n) = n!*sum(k=1, n, sumdiv(k, d, (-1)^(k/d+1)*d)/k);
a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=1, i, a356390(j)*binomial(i-1, j-1)*v[i-j+1])); v;
CROSSREFS
Sequence in context: A289718 A010910 A078100 * A036753 A164311 A091125
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 05 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 19 07:15 EDT 2024. Contains 375284 sequences. (Running on oeis4.)