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!)
A346771 G.f. A(x) satisfies: A(x) = 1 + x * A(x/(1 - x)) / (1 - x^2). 1
1, 1, 1, 3, 7, 23, 81, 325, 1429, 6851, 35443, 196507, 1160633, 7266561, 48022313, 333776331, 2432140759, 18528143535, 147201596073, 1216952016245, 10448532393869, 92999784076875, 856739848236627, 8156691628658019, 80147320081510673, 811770418508099905 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
E.g.f.: exp(-x) * (2 * exp(exp(x) - 1) - 1).
a(0) = a(1) = 1; a(n) = Sum_{k=1..n-1} binomial(n-1,k) * a(n-k-1).
a(n) = Sum_{k=0..n} (-1)^(n-k) * binomial(n,k) * A186021(k).
a(n) = 2 * A000296(n) - (-1)^n.
MATHEMATICA
nmax = 25; A[_] = 0; Do[A[x_] = 1 + x A[x/(1 - x)]/(1 - x^2) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
nmax = 25; CoefficientList[Series[Exp[-x] (2 Exp[Exp[x] - 1] - 1), {x, 0, nmax}], x] Range[0, nmax]!
a[0] = a[1] = 1; a[n_] := a[n] = Sum[Binomial[n - 1, k] a[n - k - 1], {k, 1, n - 1}]; Table[a[n], {n, 0, 25}]
CROSSREFS
Sequence in context: A208591 A104088 A169650 * A136508 A184935 A099152
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Aug 02 2021
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 May 6 16:55 EDT 2024. Contains 372297 sequences. (Running on oeis4.)