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!)
A367921 Expansion of e.g.f. exp(4*(exp(x) - 1) - 3*x). 2
1, 1, 5, 17, 93, 505, 3269, 22657, 172461, 1407177, 12284629, 113832273, 1114775869, 11487315481, 124118143717, 1401808691489, 16504815145421, 202101235848297, 2568312461002741, 33808677627863537, 460227870278020957, 6468672644291075001, 93745096205219336709 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = 1 - x * ( 3 * A(x) - 4 * A(x/(1 - x)) / (1 - x) ).
a(n) = exp(-4) * Sum_{k>=0} 4^k * (k-3)^n / k!.
a(0) = 1; a(n) = -3 * a(n-1) + 4 * Sum_{k=1..n} binomial(n-1,k-1) * a(n-k).
MATHEMATICA
nmax = 22; CoefficientList[Series[Exp[4 (Exp[x] - 1) - 3 x], {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = -3 a[n - 1] + 4 Sum[Binomial[n - 1, k - 1] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 22}]
CROSSREFS
Sequence in context: A203116 A198090 A262862 * A180382 A250717 A287842
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Dec 04 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 July 7 15:55 EDT 2024. Contains 374107 sequences. (Running on oeis4.)