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!)
A356487 Expansion of e.g.f. Product_{k>0} 1/(1 - (k * x)^k)^(1/k!). 3
1, 1, 6, 45, 580, 7105, 170076, 2654575, 116426528, 2386183761, 209503380160, 3455683548691, 969334978024920, 15164681616944353, 6510178188269825720, 223847763757748796975, 81261936394687862700256, 1581790511799886415713825 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} A356486(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!))))
(PARI) a356486(n) = (n-1)!*sumdiv(n, d, d^n/(d-1)!);
a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=1, i, a356486(j)*binomial(i-1, j-1)*v[i-j+1])); v;
CROSSREFS
Sequence in context: A078865 A160492 A318017 * A322089 A273091 A086721
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 09 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 20 12:05 EDT 2024. Contains 374445 sequences. (Running on oeis4.)