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!)
A355231 E.g.f. A(x) satisfies A'(x) = 1 - 2 * log(1-x) * A(x). 2
0, 1, 0, 4, 6, 48, 200, 1364, 9016, 71088, 607920, 5772528, 59790720, 673839456, 8210152704, 107668087104, 1513106471040, 22700196933120, 362277092798208, 6130771723664640, 109694104262443008, 2069581743476587008, 41071931895114372096, 855436794313229319168 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(0) = 0, a(1) = 1; a(n+1) = 2 * Sum_{k=1..n-1} (k-1)! * binomial(n,k) * a(n-k).
E.g.f.: (1-x)^(2 - 2*x) / exp(2 - 2*x) * Integral(exp(2 - 2*x) / (1-x)^(2 - 2*x) dx). - Vaclav Kotesovec, Jun 25 2022
MATHEMATICA
nmax = 25; CoefficientList[Series[(1-x)^(2 - 2*x)/E^(2 - 2*x) * Integrate[E^(2 - 2*x) / (1-x)^(2 - 2*x), x], {x, 0, nmax}], x] * Range[0, nmax]! (* Vaclav Kotesovec, Jun 25 2022 *)
PROG
(PARI) a_vector(n) = my(v=vector(n)); v[1]=1; for(i=1, n-1, v[i+1]=2*sum(j=1, i-1, (j-1)!*binomial(i, j)*v[i-j])); concat(0, v);
CROSSREFS
Sequence in context: A134592 A306705 A165658 * A066348 A330978 A183369
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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)