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!)
A355232 E.g.f. A(x) satisfies A'(x) = 1 + (exp(x) - 1) * A(2*x). 2
0, 1, 0, 4, 6, 136, 810, 28204, 458766, 30584656, 1191878610, 162323643604, 14307180186486, 4073323890279736, 788119370902131450, 472616432593062958204, 197219048399199774543966, 249355424516977575240738976 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(0) = 0, a(1) = 1; a(n+1) = Sum_{k=1..n-1} 2^k * binomial(n,k) * a(k).
PROG
(PARI) a_vector(n) = my(v=vector(n)); v[1]=1; for(i=1, n-1, v[i+1]=sum(j=1, i-1, 2^j*binomial(i, j)*v[j])); concat(0, v);
CROSSREFS
Sequence in context: A337466 A052672 A137025 * A176493 A355230 A070155
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jun 25 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 24 10:11 EDT 2024. Contains 371935 sequences. (Running on oeis4.)