(Translated by https://www.hiragana.jp/)
A355084 - OEIS
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!)
A355084 E.g.f. A(x) satisfies A(x) = 1 + log(1+x) * A(2*x). 2
1, 1, 3, 32, 962, 74604, 14102416, 6268777248, 6394217598800, 14703540690658848, 75208658403123879744, 846736815151560907880448, 20804324374762392749905814784, 1107653447201119751335031683041792, 127026805293926861783650032004892737536 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} (-1)^(k-1) * 2^(n-k) * (k-1)! * binomial(n,k) * a(n-k).
PROG
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=1, i, (-1)^(j-1)*2^(i-j)*(j-1)!*binomial(i, j)*v[i-j+1])); v;
CROSSREFS
Sequence in context: A373875 A352019 A374574 * A202806 A368601 A054780
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jun 18 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 3 07:27 EDT 2024. Contains 375649 sequences. (Running on oeis4.)