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!)
A354503 Expansion of e.g.f. ( Product_{k>0} (1 + x^k)^(1/k) )^exp(x). 2
1, 1, 3, 14, 67, 424, 3093, 26060, 233917, 2427224, 27565317, 339002146, 4450167269, 63343680802, 964189902141, 15769859929260, 270255218753593, 4913097747513800, 94513145955643993, 1904990351069631390, 40153307898034641361, 893402292594225679438 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} A354506(k) * 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))^exp(x)))
(PARI) a354506(n) = n!*sum(k=1, n, sumdiv(k, d, (-1)^(k/d+1))/(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, a354506(j)*binomial(i-1, j-1)*v[i-j+1])); v;
CROSSREFS
Sequence in context: A345683 A002320 A151323 * A181662 A241478 A113140
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 April 19 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)