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!)
A356590 Expansion of e.g.f. ( Product_{k>0} 1/(1 - (k * x)^k)^(1/k) )^exp(x). 1
1, 1, 8, 96, 2382, 100035, 6995185, 699004551, 96910745876, 17476222963065, 4000562831147323, 1127335505294104887, 384099492016873956422, 155403154609857016567601, 73680868272553092728379865, 40444727351284600806487687057 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} A356589(k) * binomial(n-1,k-1) * a(n-k).
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(1/prod(k=1, N, (1-(k*x)^k)^(1/k))^exp(x)))
(PARI) a356589(n) = n!*sum(k=1, n, sigma(k, k)/(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, a356589(j)*binomial(i-1, j-1)*v[i-j+1])); v;
CROSSREFS
Sequence in context: A337597 A052127 A300474 * A338571 A317005 A002506
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 14 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 July 31 23:10 EDT 2024. Contains 374809 sequences. (Running on oeis4.)