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!)
A356538 Expansion of e.g.f. Product_{k>0} 1/(1 - (2 * x)^k)^(1/2^k). 1
1, 1, 5, 27, 249, 2085, 30645, 354375, 6542865, 108554985, 2330525925, 45331607475, 1288779532425, 28889867731725, 876160258298325, 25315531795929375, 860642393272286625, 26527678331237708625, 1063065483349950205125, 36393649136002135852875 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = (n-1)! * Sum_{k=1..n} A090879(k) * a(n-k)/(n-k)!.
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(1/prod(k=1, N, (1-(2*x)^k)^(1/2^k))))
(PARI) a090879(n) = sumdiv(n, d, d*2^(n-d));
a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=(i-1)!*sum(j=1, i, a090879(j)*v[i-j+1]/(i-j)!)); v;
CROSSREFS
Cf. A090879.
Sequence in context: A126119 A105631 A167019 * A342904 A230563 A204266
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Aug 11 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 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)