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!)
A347435 E.g.f.: exp( exp(x) * (exp(x) - 1 - x - x^2 / 2 - x^3 / 6) ). 2
1, 0, 0, 0, 1, 6, 22, 64, 198, 1138, 10004, 83920, 617993, 4226028, 30103686, 251883012, 2490287821, 26456763078, 281404300348, 2966101610920, 31877462564554, 362624252399566, 4437794875670072, 57612897938229380, 773900876490016325, 10599854900351622752 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
COMMENTS
Exponential transform of A002663.
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=1..n} binomial(n-1,k-1) * A002663(k) * a(n-k).
MAPLE
a:= proc(n) option remember; `if`(n=0, 1, add(
a(n-j)*binomial(n-1, j-1)*(2^j-j^3/6-5*j/6-1), j=1..n))
end:
seq(a(n), n=0..25); # Alois P. Heinz, Sep 02 2021
MATHEMATICA
nmax = 25; CoefficientList[Series[Exp[Exp[x] (Exp[x] - 1 - x - x^2/2 - x^3/6)], {x, 0, nmax}], x] Range[0, nmax]!
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n - 1, k - 1] (2^k - 1 - k (k^2 + 5)/6) a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 25}]
CROSSREFS
Sequence in context: A001925 A002663 A099855 * A003469 A364415 A189418
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Sep 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 4 04:49 EDT 2024. Contains 372227 sequences. (Running on oeis4.)