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!)
A352860 a(0) = 1; a(n) = Sum_{k=0..n-1} binomial(n,k) * 2^k * a(k). 9
1, 1, 5, 67, 2273, 187411, 36539465, 16496912587, 16958655627233, 39148957534778851, 200638280176080172025, 2261092739579072893806907, 55582179517311967755693514193, 2960001149710485505367113202321491, 339497331023047752386812273780566932585 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f. A(x) satisfies: A(x) = 1 + (exp(x) - 1) * A(2*x).
a(n) ~ c * n! * 2^(n*(n-1)/2), where c = 1.572986203588985421674040830458773854660492965929302012... - Vaclav Kotesovec, Apr 07 2022
MATHEMATICA
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n, k] 2^k a[k], {k, 0, n - 1}]; Table[a[n], {n, 0, 14}]
nmax = 14; A[_] = 0; Do[A[x_] = 1 + (Exp[x] - 1) A[2 x] + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] Range[0, nmax]!
PROG
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=0, i-1, 2^j*binomial(i, j)*v[j+1])); v; \\ Seiichi Manyama, Jun 18 2022
CROSSREFS
Sequence in context: A293849 A244589 A113064 * A291807 A197776 A197606
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 06 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 September 14 06:54 EDT 2024. Contains 375920 sequences. (Running on oeis4.)