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!)
A367945 Expansion of e.g.f. exp(2*(exp(2*x) - 1) - x). 1
1, 3, 17, 115, 929, 8547, 87729, 988883, 12100929, 159331523, 2241395537, 33493315379, 529089873121, 8799587162659, 153545747910129, 2802447872764307, 53358770299683457, 1057354788073681283, 21760656533457251985, 464240718007022020083, 10249389749356980403745 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = 1 - x * ( A(x) - 4 * A(x/(1 - 2*x)) / (1 - 2*x) ).
a(n) = exp(-2) * Sum_{k>=0} 2^k * (2*k-1)^n / k!.
a(0) = 1; a(n) = -a(n-1) + Sum_{k=1..n} binomial(n-1,k-1) * 2^(k+1) * a(n-k).
MATHEMATICA
nmax = 20; CoefficientList[Series[Exp[2 (Exp[2 x] - 1) - x], {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = -a[n - 1] + Sum[Binomial[n - 1, k - 1] 2^(k + 1) a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 20}]
PROG
(PARI) my(x='x+O('x^30)); Vec(serlaplace(exp(2*(exp(2*x) - 1) - x))) \\ Michel Marcus, Dec 07 2023
CROSSREFS
Sequence in context: A112111 A365856 A074554 * A074544 A165976 A368965
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Dec 05 2023
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 27 07:11 EDT 2024. Contains 372009 sequences. (Running on oeis4.)